:root {
    --neon-cyan: #00d4ff;
    --cyan-bright: #4de8ff;
    --cyan-dim: rgba(0, 212, 255, 0.08);
    --chrome: #c0c8d8;
    --chrome-bright: #e2e8f0;
    --purple-edge: #5a4d8a;
    --blue-accent: #3a9fd4;
    --dark-bg: #060610;
    --dark-surface: #0c0c1a;
    --dark-card: #101020;
    --dark-card-hover: #151528;
    --text-primary: #e2e8f0;
    --text-muted: #9aaac8;
    --text-dim: #6878a0;
    --border-subtle: rgba(0, 212, 255, 0.08);
    --border-hover: rgba(0, 212, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 8px 40px rgba(0, 212, 255, 0.1);
  }

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

  body {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
  }

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

  /* === NAV === */
  .nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(6, 6, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
  }

  .nav-logo {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--chrome) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

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

  .nav-links a:hover {
    color: var(--neon-cyan);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan) !important;
    background: rgba(0, 212, 255, 0.05);
    transition: all 0.3s ease;
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-cta:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--neon-cyan);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  }

  /* === HERO === */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 8rem 2rem 6rem;
  }

  .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(90, 77, 138, 0.12) 0%, transparent 70%),
      radial-gradient(ellipse 60% 50% at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 70% 60%, rgba(58, 159, 212, 0.06) 0%, transparent 50%);
    z-index: 0;
  }

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

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.3s forwards;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-tag::before,
  .hero-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
  }

  .hero-tag::after {
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 0.08em;
    line-height: 1;
    background: linear-gradient(135deg, var(--chrome) 0%, var(--cyan-bright) 30%, var(--chrome-bright) 50%, var(--neon-cyan) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite, fadeIn 1.5s ease 0.5s forwards;
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.2));
    margin-bottom: 2rem;
    opacity: 0;
  }

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

  .hero-sub {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.8s forwards;
  }

  .hero-sub em {
    font-style: normal;
    color: var(--text-primary);
    font-weight: 500;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1.5s ease 1s forwards;
    transition: all 0.3s ease;
  }

  .hero-cta:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
  }

  .hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    margin: 3rem auto;
    opacity: 0;
    animation: fadeIn 1.5s ease 1.2s forwards;
  }

  .hero-scroll {
    opacity: 0;
    animation: fadeIn 1.5s ease 1.5s forwards;
  }

  .hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    margin: 0 auto;
    animation: pulse-down 2s ease-in-out infinite;
  }
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    margin: 0 auto;
    animation: pulse-down 2s ease-in-out infinite;
  }

  @keyframes pulse-down {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(1.3); }
  }

  /* === PRODUCTS === */
  .products-section {
    padding: 8rem 2rem 10rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .section-label::before,
  .section-label::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
  }

  .section-label::after {
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }

  .product-card {
    border: 1px solid var(--border-subtle);
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: var(--shadow-card);
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }

  .product-card:hover {
    border-color: var(--border-hover);
    background: var(--dark-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
  }

  .product-card:hover::before,
  .product-card:hover::after {
    opacity: 1;
  }

  .product-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
  }

  .product-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
  }

  .product-desc {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }

  .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .product-feature {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 100px;
    text-transform: uppercase;
    background: rgba(0, 212, 255, 0.03);
    transition: all 0.3s ease;
  }

  .product-card:hover .product-feature {
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--text-muted);
  }

  .product-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--neon-cyan);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .product-link::after {
    content: '→';
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-link {
    opacity: 0.9;
  }

  .product-card:hover .product-link::after {
    transform: translateX(4px);
  }

  /* === STATS SECTION === */
  .stats-section {
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .stat-item {
    text-align: center;
    padding: 2rem;
  }

  .stat-number {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--chrome) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  /* === ABOUT === */
  .about-section {
    padding: 8rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .about-text {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .about-text em {
    font-style: normal;
    color: var(--text-primary);
    font-weight: 500;
  }

  /* === VALUES === */
  .values-section {
    padding: 6rem 2rem 10rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .value {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .value:hover {
    background: var(--dark-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-hover);
  }

  .value:hover::before {
    opacity: 1;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    background: rgba(0, 212, 255, 0.03);
  }

  .value-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }

  .value-desc {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
  }

  /* === TESTIMONIALS === */
  .testimonials-section {
    padding: 8rem 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, transparent 0%, rgba(90, 77, 138, 0.03) 50%, transparent 100%);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
  }

  .testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }

  .testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .testimonial-quote::before {
    content: '"';
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--neon-cyan);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-edge), var(--blue-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
  }

  .testimonial-info {
    display: flex;
    flex-direction: column;
  }

  .testimonial-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
  }

  .testimonial-role {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  /* === CONTACT === */
  .contact-section {
    padding: 8rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-heading {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .contact-sub {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }

  .contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.05);
    transition: all 0.3s ease;
  }

  .contact-email:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
  }

  /* === FOOTER === */
  .footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 100%);
  }

  .footer-company {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .footer-details {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    line-height: 2;
  }

  .footer-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-details a:hover {
    color: var(--neon-cyan);
  }

  .footer-sep {
    margin: 0 0.75rem;
    opacity: 0.3;
  }

  /* === ANIMATED BACKGROUND === */
  .particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0;
    animation: drift 9s infinite ease-in-out;
    background: var(--neon-cyan);
  }

  .particle:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--neon-cyan); animation-duration: 8s; }
  .particle:nth-child(2) { left: 20%; animation-delay: 1.5s; background: var(--chrome); animation-duration: 11s; }
  .particle:nth-child(3) { left: 30%; animation-delay: 3s; background: var(--blue-accent); animation-duration: 7s; }
  .particle:nth-child(4) { left: 40%; animation-delay: 0.8s; background: var(--purple-edge); animation-duration: 10s; }
  .particle:nth-child(5) { left: 50%; animation-delay: 2.2s; background: var(--neon-cyan); animation-duration: 9s; }
  .particle:nth-child(6) { left: 60%; animation-delay: 4s; background: var(--chrome); animation-duration: 12s; }
  .particle:nth-child(7) { left: 70%; animation-delay: 1s; background: var(--blue-accent); animation-duration: 8s; }
  .particle:nth-child(8) { left: 80%; animation-delay: 3.5s; background: var(--neon-cyan); animation-duration: 10s; }
  .particle:nth-child(9) { left: 88%; animation-delay: 2s; background: var(--purple-edge); animation-duration: 7s; }
  .particle:nth-child(10) { left: 95%; animation-delay: 0.5s; background: var(--chrome); animation-duration: 11s; }

  @keyframes drift {
    0% { transform: translateY(100vh) scale(1); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(0.4); opacity: 0; }
  }

  .hero-grid-anim {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .grid-h, .grid-v {
    position: absolute;
    background: rgba(0, 212, 255, 0.02);
  }

  .grid-h {
    width: 100%;
    height: 1px;
  }

  .grid-v {
    width: 1px;
    height: 100%;
  }

  .gl-1 { top: 25%; animation: grid-breathe 7s ease-in-out infinite; }
  .gl-2 { top: 50%; animation: grid-breathe 7s ease-in-out 1.5s infinite; }
  .gl-3 { top: 75%; animation: grid-breathe 7s ease-in-out 3s infinite; }
  .gl-4 { left: 15%; animation: grid-breathe 7s ease-in-out 0.5s infinite; }
  .gl-5 { left: 38%; animation: grid-breathe 7s ease-in-out 2s infinite; }
  .gl-6 { left: 62%; animation: grid-breathe 7s ease-in-out 3.5s infinite; }
  .gl-7 { left: 85%; animation: grid-breathe 7s ease-in-out 1s infinite; }

  @keyframes grid-breathe {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
  }

  /* === PRODUCT SCREENSHOTS === */
  .product-screenshot {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
  }

  .product-screenshot-inner {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--dark-surface);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-screenshot-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.5s ease, transform 0.8s ease;
  }

  .product-card:hover .product-screenshot-inner img {
    opacity: 1;
    transform: scale(1.02);
  }

  /* Placeholder state before real screenshots */
  .screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
    background:
      radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 70%),
      var(--dark-surface);
  }

  .screenshot-placeholder-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
  }

  .screenshot-placeholder-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dim);
    fill: none;
    stroke-width: 1.5;
  }

  .screenshot-placeholder-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .screenshot-scanline {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 2;
  }

  .screenshot-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    z-index: 3;
  }

  .sc-tl { top: 6px; left: 6px; border-top: 1px solid rgba(0, 212, 255, 0.2); border-left: 1px solid rgba(0, 212, 255, 0.2); }
  .sc-tr { top: 6px; right: 6px; border-top: 1px solid rgba(0, 212, 255, 0.2); border-right: 1px solid rgba(0, 212, 255, 0.2); }
  .sc-bl { bottom: 6px; left: 6px; border-bottom: 1px solid rgba(0, 212, 255, 0.2); border-left: 1px solid rgba(0, 212, 255, 0.2); }
  .sc-br { bottom: 6px; right: 6px; border-bottom: 1px solid rgba(0, 212, 255, 0.2); border-right: 1px solid rgba(0, 212, 255, 0.2); }

  /* === SECTION REVEALS === */
  .section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  /* === ANIMATIONS === */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .nav {
      padding: 1rem 1.5rem;
    }

    .nav-logo {
      font-size: 1.1rem;
    }

    .nav-links {
      gap: 1rem;
    }

    .nav-links a:not(.nav-cta) {
      display: none;
    }

    .hero {
      padding: 6rem 1.5rem 4rem;
    }

    .hero-tag::before,
    .hero-tag::after {
      width: 20px;
    }

    .products-section {
      padding: 5rem 1.5rem 6rem;
    }

    .products-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .product-card {
      padding: 2rem 1.5rem;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .stat-item {
      padding: 1.5rem 1rem;
    }

    .values-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .value {
      padding: 2rem 1.5rem;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .section-label::before,
    .section-label::after {
      width: 30px;
    }

    .about-section {
      padding: 5rem 1.5rem;
    }

    .about-text {
      font-size: 1.1rem;
    }

    .contact-section {
      padding: 5rem 1.5rem;
    }

    .contact-email {
      font-size: 1rem;
      padding: 0.875rem 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }

    .stat-number {
      font-size: 2.5rem;
    }
  }
