    :root{
      --bg:#050816;
      --bg-2:#0a0f1e;
      --surface:rgba(10,14,30,.78);
      --surface-2:rgba(255,255,255,.025);
      --surface-3:rgba(255,255,255,.045);

      --text:#f1f5f9;
      --text-2:#e2e8f0;
      --muted:#94a3b8;
      --muted-2:#64748b;
      --muted-3:#475569;

      --border:rgba(255,255,255,.07);
      --border-hover:rgba(56,189,248,.22);

      --primary:#5eead4;
      --primary-2:#8b5cf6;
      --accent:#38bdf8;
      --accent-warm:#f0abfc;

      --success:#4ade80;
      --success-bg:rgba(74,222,128,.1);
      --success-border:rgba(74,222,128,.22);

      --shadow:0 24px 80px rgba(0,0,0,.5);
      --radius:44px;
      --radius-sm:22px;
      --radius-xs:14px;
    }

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

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',system-ui,sans-serif;
      background:var(--bg);
      color:var(--text);
      min-height:100vh;
      display:flex;
      justify-content:center;
      align-items:center;
      padding:40px 20px;
      overflow-x:hidden;
      position:relative;
    }

    #particles{
      position:fixed;
      inset:0;
      z-index:0;
      pointer-events:none;
    }

    .orb{
      position:fixed;
      border-radius:50%;
      filter:blur(120px);
      opacity:.35;
      z-index:0;
      pointer-events:none;
      animation:orbFloat 14s ease-in-out infinite alternate;
    }
    .orb--cyan{
      width:600px;height:600px;
      background:radial-gradient(circle,rgba(56,189,248,.5),transparent 70%);
      top:-200px;left:-160px;
    }
    .orb--violet{
      width:520px;height:520px;
      background:radial-gradient(circle,rgba(139,92,246,.45),transparent 70%);
      bottom:-180px;right:-160px;
      animation-duration:18s;
    }
    .orb--teal{
      width:350px;height:350px;
      background:radial-gradient(circle,rgba(94,234,212,.3),transparent 70%);
      top:50%;left:50%;
      transform:translate(-50%,-50%);
      animation-duration:20s;
      opacity:.18;
    }

    @keyframes orbFloat{
      0%{transform:translateY(0) translateX(0) scale(1);}
      50%{transform:translateY(-20px) translateX(12px) scale(1.05);}
      100%{transform:translateY(22px) translateX(-14px) scale(1.1);}
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
      background-size:72px 72px;
      mask-image:radial-gradient(ellipse 70% 60% at 50% 40%,rgba(0,0,0,.7),transparent);
      pointer-events:none;
      z-index:0;
    }

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

    .container{
      position:relative;
      z-index:2;
      width:100%;
      max-width:1200px;
      border:1px solid var(--border);
      background:rgba(10,14,30,.55);
      backdrop-filter:blur(3px) saturate(1.6);
      border-radius:44px;
      overflow:hidden;
      box-shadow:var(--shadow),0 0 0 1px rgba(255,255,255,.03) inset;
      opacity:0;
      transform:translateY(24px) scale(.98);
      animation:containerIn 1s cubic-bezier(.16,1,.3,1) .15s forwards;
    }

    @keyframes containerIn{
      to{opacity:1;transform:translateY(0) scale(1);}
    }

    .container::before{
      content:"";
      position:absolute;
      inset:0;
      padding:1px;
      border-radius:44px;
      background:linear-gradient(
        var(--border-angle,135deg),
        rgba(255,255,255,.18),
        rgba(255,255,255,.02) 40%,
        rgba(94,234,212,.22) 60%,
        rgba(139,92,246,.16) 80%,
        rgba(255,255,255,.18)
      );
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite:xor;
      mask-composite:exclude;
      pointer-events:none;
      animation:borderRotate 8s linear infinite;
    }

    @keyframes borderRotate{
      to{--border-angle:495deg;}
    }

    @property --border-angle{
      syntax:'<angle>';
      initial-value:135deg;
      inherits:false;
    }

    .container::after{
      content:"";
      position:absolute;
      width:600px;height:600px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(94,234,212,.08),transparent 60%);
      transform:translate(-50%,-50%);
      pointer-events:none;
      opacity:0;
      transition:opacity .5s ease;
      z-index:0;
      left:var(--mx,50%);
      top:var(--my,50%);
    }
    .container:hover::after{
      opacity:1;
    }

    .hero{
      padding:64px 68px 48px;
      position:relative;
      z-index:1;
    }

    .topbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:52px;
      gap:20px;
      flex-wrap:wrap;
      opacity:0;
      animation:fadeUp .7s cubic-bezier(.16,1,.3,1) .35s forwards;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .brand-icon{
      width:52px;height:52px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,rgba(94,234,212,.14),rgba(139,92,246,.14));
      border:1px solid rgba(255,255,255,.07);
      box-shadow:
        inset 0 1px 1px rgba(255,255,255,.05),
        0 8px 24px rgba(94,234,212,.12);
      transition:.3s ease;
      position:relative;
      overflow:hidden;
    }

    .brand-icon::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(255,255,255,.08),transparent 60%);
      border-radius:16px;
    }

    .brand:hover .brand-icon{
      box-shadow:
        inset 0 1px 1px rgba(255,255,255,.05),
        0 12px 32px rgba(94,234,212,.25);
      transform:scale(1.04) rotate(-2deg);
    }

    .brand-icon i{
      font-size:1.3rem;
      background:linear-gradient(135deg,#5eead4,#a78bfa);
      -webkit-background-clip:text;
      color:transparent;
      position:relative;
      z-index:1;
    }

    .brand-text h2{
      font-family:'Space Grotesk',sans-serif;
      font-size:1.05rem;
      font-weight:700;
      letter-spacing:-.01em;
    }

    .brand-text p{
      color:var(--muted-2);
      font-size:.8rem;
      margin-top:2px;
      font-weight:500;
    }

    .status{
      display:flex;
      align-items:center;
      gap:10px;
      padding:9px 18px;
      border-radius:999px;
      background:var(--success-bg);
      border:1px solid var(--success-border);
      color:#86efac;
      font-size:.75rem;
      font-weight:600;
      letter-spacing:.1em;
      text-transform:uppercase;
      transition:.3s ease;
      position:relative;
      overflow:hidden;
    }

    .status::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(74,222,128,.08),transparent 60%);
      border-radius:999px;
    }

    .status:hover{
      background:rgba(74,222,128,.15);
      transform:scale(1.02);
    }

    .pulse{
      width:7px;height:7px;
      border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 rgba(74,222,128,.5);
      animation:pulse 2s ease-in-out infinite;
      flex-shrink:0;
    }

    @keyframes pulse{
      0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.5);}
      50%{box-shadow:0 0 0 10px rgba(74,222,128,0);}
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:40px;
      align-items:center;
    }

    .hero-left{
      opacity:0;
      animation:fadeUp .8s cubic-bezier(.16,1,.3,1) .5s forwards;
    }

    .hero-left h1{
      font-family:'Space Grotesk',sans-serif;
      font-size:clamp(2.8rem,5.8vw,4.6rem);
      line-height:1.02;
      letter-spacing:-.05em;
      margin-bottom:24px;
      font-weight:700;
    }

    .hero-left h1 span{
      background:linear-gradient(135deg,#5eead4 0%,#8b5cf6 50%,#f0abfc 100%);
      -webkit-background-clip:text;
      color:transparent;
      background-size:200% 200%;
      animation:gradientShift 6s ease infinite;
      position:relative;
    }

    @keyframes gradientShift{
      0%,100%{background-position:0% 50%;}
      50%{background-position:100% 50%;}
    }

    .subtitle{
      font-size:1.02rem;
      line-height:1.85;
      color:var(--muted);
      max-width:580px;
      margin-bottom:36px;
    }

    .cta-row{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:44px;
    }

    .btn{
      height:52px;
      padding:0 28px;
      border-radius:var(--radius-xs);
      border:none;
      outline:none;
      font-family:inherit;
      font-size:.88rem;
      font-weight:600;
      cursor:pointer;
      transition:.35s cubic-bezier(.16,1,.3,1);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-decoration:none;
      position:relative;
      overflow:hidden;
    }

    .btn-primary{
      background:linear-gradient(135deg,#14b8a6,#8b5cf6);
      color:white;
      box-shadow:
        0 10px 28px rgba(94,234,212,.2),
        0 2px 8px rgba(139,92,246,.15),
        inset 0 1px 1px rgba(255,255,255,.15);
    }

    .btn-primary::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(255,255,255,.18),transparent 60%);
      opacity:0;
      transition:opacity .3s ease;
    }

    .btn-primary::after{
      content:"";
      position:absolute;
      top:50%;left:50%;
      width:0;height:0;
      background:rgba(255,255,255,.15);
      border-radius:50%;
      transform:translate(-50%,-50%);
      transition:width .5s ease,height .5s ease;
    }

    .btn-primary:hover{
      transform:translateY(-3px) scale(1.02);
      box-shadow:
        0 18px 44px rgba(94,234,212,.3),
        0 4px 12px rgba(139,92,246,.2),
        inset 0 1px 1px rgba(255,255,255,.15);
    }

    .btn-primary:hover::before{
      opacity:1;
    }

    .btn-primary:active{
      transform:translateY(-1px) scale(1);
    }

    .btn-secondary{
      background:var(--surface-3);
      border:1px solid var(--border);
      color:#cbd5e1;
      backdrop-filter:blur(8px);
    }

    .btn-secondary:hover{
      background:rgba(255,255,255,.07);
      transform:translateY(-3px);
      border-color:rgba(255,255,255,.14);
      box-shadow:0 8px 24px rgba(0,0,0,.2);
    }

    .btn-secondary:active{
      transform:translateY(-1px);
    }

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

    .stat-card{
      background:var(--surface-2);
      border:1px solid rgba(255,255,255,.04);
      border-radius:var(--radius-sm);
      padding:22px;
      transition:.4s cubic-bezier(.16,1,.3,1);
      position:relative;
      overflow:hidden;
    }

    .stat-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(160deg,rgba(94,234,212,.06),transparent 60%);
      opacity:0;
      transition:.4s ease;
    }

    .stat-card::after{
      content:"";
      position:absolute;
      top:0;left:0;
      width:100%;height:2px;
      background:linear-gradient(90deg,transparent,rgba(94,234,212,.4),transparent);
      opacity:0;
      transition:opacity .3s ease;
    }

    .stat-card:hover{
      transform:translateY(-5px);
      border-color:var(--border-hover);
      background:rgba(94,234,212,.04);
      box-shadow:0 12px 32px rgba(0,0,0,.2),0 0 24px rgba(94,234,212,.06);
    }

    .stat-card:hover::before{
      opacity:1;
    }

    .stat-card:hover::after{
      opacity:1;
    }

    .stat-card h3{
      font-family:'Space Grotesk',sans-serif;
      font-size:1.75rem;
      margin-bottom:6px;
      letter-spacing:-.03em;
      font-weight:700;
      position:relative;
      transition:.3s ease;
    }

    .stat-card:hover h3{
      background:linear-gradient(135deg,#5eead4,#38bdf8);
      -webkit-background-clip:text;
      color:transparent;
    }

    .stat-card p{
      color:var(--muted-2);
      font-size:.82rem;
      font-weight:500;
      position:relative;
    }

    .hero-right{
      opacity:0;
      animation:fadeUp .8s cubic-bezier(.16,1,.3,1) .65s forwards;
    }

    .glass-card{
      position:relative;
      border-radius:28px;
      padding:28px;
      background:
        linear-gradient(
          180deg,
          rgba(255,255,255,.08),
          rgba(255,255,255,.02)
        );
      border:1px solid rgba(255,255,255,.09);
      overflow:hidden;
      box-shadow:
        inset 0 1px 1px rgba(255,255,255,.04),
        0 20px 50px rgba(0,0,0,.35);
    }

    .glass-card::before{
      content:"";
      position:absolute;
      width:200px;height:200px;
      background:rgba(94,234,212,.12);
      border-radius:50%;
      top:-100px;right:-80px;
      filter:blur(14px);
      animation:glowPulse 4s ease-in-out infinite alternate;
    }

    .glass-card::after{
      content:"";
      position:absolute;
      width:140px;height:140px;
      background:rgba(139,92,246,.1);
      border-radius:50%;
      bottom:-70px;left:-50px;
      filter:blur(12px);
      animation:glowPulse 5s ease-in-out infinite alternate-reverse;
    }

    @keyframes glowPulse{
      0%{opacity:.6;transform:scale(1);}
      100%{opacity:1;transform:scale(1.15);}
    }

    .terminal-top{
      display:flex;
      gap:7px;
      margin-bottom:18px;
    }

    .terminal-top span{
      width:11px;height:11px;
      border-radius:50%;
      transition:.25s ease;
      cursor:pointer;
    }
    .terminal-top span:hover{transform:scale(1.3);}
    .terminal-top span:nth-child(1){background:#ef4444;box-shadow:0 0 8px rgba(239,68,68,.3);}
    .terminal-top span:nth-child(2){background:#f59e0b;box-shadow:0 0 8px rgba(245,158,11,.3);}
    .terminal-top span:nth-child(3){background:#22c55e;box-shadow:0 0 8px rgba(34,197,94,.3);}

    .terminal-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:18px;
    }

    .terminal-label{
      color:#94a3b8;
      font-size:.82rem;
      font-weight:600;
      font-family:'Space Grotesk',monospace;
      letter-spacing:.02em;
    }

    .terminal-badge{
      font-size:.68rem;
      padding:4px 12px;
      border-radius:999px;
      background:rgba(94,234,212,.1);
      border:1px solid rgba(94,234,212,.2);
      color:#5eead4;
      font-weight:600;
      text-transform:uppercase;
      letter-spacing:.08em;
      animation:badgePulse 3s ease-in-out infinite;
    }

    @keyframes badgePulse{
      0%,100%{box-shadow:0 0 0 0 rgba(94,234,212,.15);}
      50%{box-shadow:0 0 0 6px rgba(94,234,212,0);}
    }

    .code{
      display:flex;
      flex-direction:column;
      gap:10px;
      font-family:'Space Grotesk',monospace;
      font-size:.84rem;
    }

    .code-line{
      background:rgba(0,0,0,.3);
      border:1px solid rgba(255,255,255,.03);
      padding:11px 14px;
      border-radius:12px;
      color:#cbd5e1;
      overflow:auto;
      display:flex;
      align-items:center;
      gap:6px;
      flex-wrap:wrap;
      position:relative;
      line-height:1.5;
      transition:.2s ease;
    }

    .code-line:hover{
      background:rgba(0,0,0,.4);
      border-color:rgba(255,255,255,.06);
    }

    .code-line .line-num{
      color:var(--muted-3);
      font-size:.75rem;
      min-width:18px;
      user-select:none;
    }

    .code-line .teal{color:#5eead4;}
    .code-line .purple{color:#c4b5fd;}
    .code-line .green{color:#86efac;}
    .code-line .pink{color:#f0abfc;}
    .code-line .amber{color:#fcd34d;}

    .cursor-blink{
      display:inline-block;
      width:2px;
      height:1em;
      background:#5eead4;
      margin-left:2px;
      animation:blink 1s step-end infinite;
      vertical-align:text-bottom;
      box-shadow:0 0 6px rgba(94,234,212,.5);
    }

    @keyframes blink{
      0%,100%{opacity:1;}
      50%{opacity:0;}
    }

    .features{
      padding:10px 68px 64px;
      position:relative;
      z-index:1;
    }

    .section-header{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:28px;
      opacity:0;
      transform:translateY(16px);
    }

    .section-header.visible{
      animation:fadeUp .7s cubic-bezier(.16,1,.3,1) forwards;
    }

    .section-line{
      width:44px;
      height:2px;
      background:linear-gradient(to right,var(--primary),transparent);
      border-radius:2px;
    }

    .section-label{
      color:#94a3b8;
      font-size:.82rem;
      letter-spacing:.2em;
      text-transform:uppercase;
      font-weight:600;
    }

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }

    .feature-card{
      position:relative;
      padding:28px;
      border-radius:var(--radius-sm);
      background:rgba(255,255,255,.02);
      border:1px solid rgba(255,255,255,.05);
      transition:.4s cubic-bezier(.16,1,.3,1);
      overflow:hidden;
      opacity:0;
      transform:translateY(20px);
      cursor:default;
    }

    .feature-card.visible{
      animation:fadeUp .7s cubic-bezier(.16,1,.3,1) forwards;
    }

    .feature-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(
          160deg,
          rgba(94,234,212,.1),
          rgba(139,92,246,.05)
        );
      opacity:0;
      transition:.4s ease;
    }

    .feature-card::after{
      content:"";
      position:absolute;
      top:0;left:0;
      width:100%;height:2px;
      background:linear-gradient(90deg,transparent,var(--primary),transparent);
      opacity:0;
      transition:opacity .4s ease;
    }

    .feature-card:hover{
      transform:translateY(-8px);
      border-color:var(--border-hover);
      box-shadow:0 16px 40px rgba(0,0,0,.25),0 0 32px rgba(94,234,212,.06);
    }

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

    .feature-icon{
      position:relative;
      width:52px;height:52px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:20px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.06);
      transition:.4s cubic-bezier(.16,1,.3,1);
    }

    .feature-card:hover .feature-icon{
      background:rgba(94,234,212,.12);
      border-color:rgba(94,234,212,.25);
      box-shadow:0 0 28px rgba(94,234,212,.12);
      transform:scale(1.08);
    }

    .feature-icon i{
      font-size:1.15rem;
      background:linear-gradient(135deg,#5eead4,#a78bfa);
      -webkit-background-clip:text;
      color:transparent;
      transition:.3s ease;
    }

    .feature-card h4{
      position:relative;
      font-family:'Space Grotesk',sans-serif;
      font-size:.98rem;
      margin-bottom:10px;
      font-weight:700;
      letter-spacing:-.01em;
    }

    .feature-card p{
      position:relative;
      color:var(--muted-2);
      line-height:1.75;
      font-size:.86rem;
    }

    .tech-strip{
      padding:28px 0 8px;
      margin-top:40px;
      border-top:1px solid rgba(255,255,255,.04);
      overflow:hidden;
      opacity:0;
      transform:translateY(12px);
      mask-image:linear-gradient(to right,transparent,black 10%,black 90%,transparent);
    }

    .tech-strip.visible{
      animation:fadeUp .6s cubic-bezier(.16,1,.3,1) forwards;
    }

    .tech-marquee{
      display:flex;
      gap:36px;
      animation:marquee 30s linear infinite;
      width:max-content;
    }

    @keyframes marquee{
      0%{transform:translateX(0);}
      100%{transform:translateX(-50%);}
    }

    .tech-item{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--muted-3);
      font-size:.8rem;
      font-weight:600;
      letter-spacing:.03em;
      transition:.3s ease;
      white-space:nowrap;
    }

    .tech-item:hover{
      color:var(--primary);
    }

    .tech-dot{
      width:5px;height:5px;
      border-radius:50%;
      background:var(--muted-3);
      transition:.3s ease;
      flex-shrink:0;
    }

    .tech-item:hover .tech-dot{
      background:var(--primary);
      box-shadow:0 0 8px rgba(94,234,212,.4);
    }

    .footer{
      margin-top:28px;
      padding-top:28px;
      border-top:1px solid rgba(255,255,255,.05);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      flex-wrap:wrap;
      opacity:0;
      transform:translateY(12px);
    }

    .footer.visible{
      animation:fadeUp .6s cubic-bezier(.16,1,.3,1) forwards;
    }

    .footer-text{
      color:var(--muted-3);
      font-size:.84rem;
      font-weight:500;
    }

    .socials{
      display:flex;
      gap:10px;
    }

    .social{
      width:44px;height:44px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.05);
      color:var(--muted-2);
      text-decoration:none;
      font-size:.95rem;
      transition:.35s cubic-bezier(.16,1,.3,1);
      position:relative;
      overflow:hidden;
    }

    .social::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(94,234,212,.1),rgba(139,92,246,.1));
      opacity:0;
      transition:.3s ease;
    }

    .social:hover{
      transform:translateY(-5px) scale(1.05);
      background:rgba(94,234,212,.08);
      border-color:rgba(94,234,212,.25);
      color:#5eead4;
      box-shadow:0 10px 24px rgba(94,234,212,.12);
    }

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

    .social:active{
      transform:translateY(-2px) scale(1.02);
    }

    @keyframes fadeUp{
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    @media (max-width:980px){
      .hero,.features{
        padding-left:36px;
        padding-right:36px;
      }
      .hero-grid{
        grid-template-columns:1fr;
      }
      .feature-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .hero-right{
        max-width:480px;
      }
    }

    @media (max-width:640px){
      body{
        padding:16px;
      }

      .container{
        border-radius:28px;
      }

      .container::before{
        border-radius:28px;
      }

      .hero{
        padding:28px 22px 24px;
      }

      .features{
        padding:0 22px 28px;
      }

      .topbar{
        margin-bottom:32px;
      }

      .hero-left h1{
        font-size:2.5rem;
      }

      .subtitle{
        font-size:.94rem;
        line-height:1.75;
      }

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

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

      .footer{
        flex-direction:column;
        align-items:flex-start;
      }

      .btn{
        width:100%;
      }

      .cta-row{
        flex-direction:column;
      }

      .tech-strip{
        gap:16px;
      }
    }

    @media (prefers-reduced-motion:reduce){
      *,*::before,*::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
      }
    }

    :focus-visible{
      outline:2px solid var(--primary);
      outline-offset:2px;
    }

    ::-webkit-scrollbar{
      width:6px;
    }
    ::-webkit-scrollbar-track{
      background:transparent;
    }
    ::-webkit-scrollbar-thumb{
      background:rgba(255,255,255,.1);
      border-radius:3px;
    }
    ::-webkit-scrollbar-thumb:hover{
      background:rgba(255,255,255,.18);
    }