  :root {
    --black: #191127;
    --white: #f2f1ee;
    --acid: #883CF0;
    --steel: #23133a;
    --mid: #7c6bff;
    --muted: #d6d6d6;
    --border: #3a1c63;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 12px; height: 12px;
    background: var(--acid);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--acid);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
    opacity: 0.5;
  }
  body:hover .cursor { opacity: 1; }

  /* Nav */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    border-bottom: 1px solid var(--border);
    background: #180f26;
    backdrop-filter: blur(20px);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .nav-logo span { color: var(--acid); }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--acid);
    color: var(--black);
    padding: 10px 22px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  }
  .nav-cta:hover { background: #883cf0e0; transform: translateY(-1px); }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(144, 0, 255, 0.06) 0%, transparent 70%),
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(241, 238, 242, 0.015) 60px, rgba(241, 238, 242, 0.015) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(241, 238, 242, 0.015) 60px, rgba(241, 238, 242, 0.015) 61px);
    z-index: 0;
  }

  .hero-content { position: relative; z-index: 1; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: #23133a;
    border: 1px solid #3a1c63;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--acid);
    margin-bottom: 32px;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--acid);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }
  .hero h1 .line-accent { color: var(--acid); }
  .hero h1 .line-outline {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 400px;
    margin-bottom: 40px;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--acid);
    color: var(--black);
    padding: 14px 32px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    transition: transform 0.2s, background 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); background: #883cf0e0; }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--white); color: var(--acid); }

  /* Hero visual panel */
  .hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }

  .terminal {
    width: 100%;
    max-width: 520px;
    background: #1f1232;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .terminal::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--acid), transparent);
    animation: scan 3s linear infinite;
  }
  @keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  .terminal-bar {
    background: #23133a;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #ff5f57; }
  .dot-y { background: #ffbd2e; }
  .dot-g { background: #28ca41; }
  .terminal-title {
    margin-left: 8px;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.08em;
  }

  .terminal-body { padding: 24px; min-height: 300px; }

  .term-line {
    font-size: 0.78rem;
    line-height: 2;
    color: var(--muted);
    opacity: 0;
    animation: fadeIn 0.3s forwards;
  }
  .term-line.prompt::before { content: '$ '; color: var(--acid); }
  .term-line.output { color: rgba(242,241,238,0.7); padding-left: 16px; }
  .term-line.success { color: var(--acid); padding-left: 16px; }
  .term-line.warning { color: #ffbd2e; padding-left: 16px; }

  @keyframes fadeIn { to { opacity: 1; } }

  .cursor-blink {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--acid);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 4px;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  /* Stats strip */
  .stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    padding: 40px 48px;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    height: 2px; width: 0;
    background: var(--acid);
    transition: width 1s ease;
  }
  .stat-item.visible::after { width: 100%; }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-num span { color: var(--acid); }
  .stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Section header */
  .section-header {
    max-width: 600px;
    margin-bottom: 60px;
  }
  .section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--acid);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--acid);
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
  .section-title em {
    font-style: normal;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
  }

  /* Services */
  .services {
    padding: 100px 48px;
    position: relative;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--black);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card:hover {
    background: var(--steel);
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--acid);
    transition: width 0.4s ease;
  }
  .service-card:hover::before { width: 100%; }

  .service-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: #291a3e;
    border: 1px solid #5e309d;
    margin-bottom: 24px;
    transition: background 0.3s, border-color 0.3s;
  }
  .service-card:hover .service-icon {
    background: #2a1647;
    border-color: var(--acid);
  }
  .service-icon svg { width: 22px; height: 22px; stroke: var(--acid); fill: none; stroke-width: 1.5; }

  .service-num {
    position: absolute; top: 24px; right: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(241, 238, 242, 0.04);
    line-height: 1;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: #d582f60a; }

  .service-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .service-desc {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .tag {
    font-size: 0.65rem;
    padding: 4px 10px;
    border: 1px solid var(--border);
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s;
  }
  .service-card:hover .tag { border-color: #5e309d; color: var(--white); }

  /* Pricing */
  .pricing {
    padding: 100px 48px;
    background: var(--steel);
    position: relative;
    overflow: hidden;
  }
  .pricing::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(162, 0, 255, 0.05) 0%, transparent 70%);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative; z-index: 1;
  }

  .pricing-card {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }
  .pricing-card:hover {
    transform: translateY(-6px);
    border-color: #3a1c63;
  }
  .pricing-card.featured {
    border-color: var(--acid);
    background: rgba(187, 0, 255, 0.03);
  }

  .featured-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--acid);
    color: var(--black);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
  }

  .plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .plan-price {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .plan-price span { font-size: 1.2rem; color: var(--muted); vertical-align: super; }
  .plan-period {
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 32px;
  }

  .plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
  }

  .plan-features { list-style: none; margin-bottom: 32px; }
  .plan-features li {
    font-size: 0.78rem;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
    line-height: 1.5;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: '';
    width: 14px; height: 14px;
    min-width: 14px;
    border: 1px solid var(--acid);
    background: rgba(179, 0, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpolyline points='2,7 6,11 12,3' fill='none' stroke='%23c8ff00' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--white);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .btn-plan:hover { border-color: var(--white); }
  .pricing-card.featured .btn-plan {
    background: var(--acid);
    color: var(--black);
    border-color: var(--acid);
  }
  .pricing-card.featured .btn-plan:hover { background: #883cf0e0; }

  /* Testimonials */
  .testimonials {
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .testimonials-slider {
    position: relative;
    overflow: hidden;
  }

  .testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .testimonial-quote {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    position: relative;
  }
  .testimonial-quote::before {
    content: '"';
    display: block;
    font-size: 6rem;
    color: var(--acid);
    line-height: 0.7;
    margin-bottom: 16px;
    opacity: 0.5;
  }

  .testimonial-author-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  .testimonial-author-role {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
  }

  .testimonial-visual {
    background: var(--steel);
    border: 1px solid var(--border);
    padding: 40px;
    display: flex; align-items: center; justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
  }
  .testimonial-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(170, 0, 255, 0.02) 10px,
      rgba(153, 0, 255, 0.02) 11px
    );
  }

  .company-initial {
    font-family: 'Syne', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: #da81f51a;
    position: relative; z-index: 1;
    letter-spacing: -0.05em;
  }

  .slider-controls {
    display: flex; gap: 12px; margin-top: 40px;
  }
  .slider-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
  }
  .slider-btn:hover { border-color: var(--acid); background: rgba(162, 0, 255, 0.08); color: var(--acid); }

  .slider-dots {
    display: flex; gap: 8px; align-items: center; margin-left: 16px;
  }
  .dot-indicator {
    width: 6px; height: 6px;
    background: var(--mid);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
  }
  .dot-indicator.active {
    background: var(--acid);
    width: 24px;
    border-radius: 3px;
  }

  /* CTA */
  .cta {
    padding: 100px 48px;
    background: var(--steel);
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }
  .cta::after {
    content: 'SECURE';
    position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 14rem;
    color: #da81f509;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
  }

  .cta-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .cta-headline em {
    font-style: normal;
    color: var(--acid);
  }
  .cta-sub {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin-top: 16px;
  }

  .cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }

  /* Footer */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 48px 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 0;
  }

  .footer-brand .nav-logo { margin-bottom: 16px; display: block; }
  .footer-tagline { font-size: 0.75rem; color: var(--muted); line-height: 1.7; max-width: 240px; }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--acid); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--black);
  }
  .footer-bottom p { font-size: 0.7rem; color: var(--muted); }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { font-size: 0.7rem; color: var(--muted); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--white); }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* Ticker */
  .ticker {
    background: var(--acid);
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
  }
  .ticker-inner {
    display: inline-flex;
    animation: ticker 25s linear infinite;
  }
  .ticker-inner span {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 40px;
  }
  .ticker-inner span.sep {
    padding: 0;
    color: rgba(0,0,0,0.3);
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 1024px) {
    nav { padding: 16px 24px; }
    .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
    .hero-visual { display: none; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .services { padding: 60px 24px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pricing { padding: 60px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 60px 24px; }
    .testimonial-slide { grid-template-columns: 1fr; }
    .testimonial-visual { display: none; }
    .cta { grid-template-columns: 1fr; padding: 60px 24px; }
    footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; }
    .stat-item { padding: 32px 24px; }
  }

  @media (max-width: 640px) {
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    footer { grid-template-columns: 1fr; }
  }