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

  :root {
    --bg: #d8f9f4;
    --bg2: #080d1a;
    --surface: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.08);
    --accent: #00f5c4;
    --accent2: #7b5ea7;
    --accent3: #ff6b6b;
    --accent4: #ffd166;
    --text: #e8eaf0;
    --muted: #5a6280;
    --card1: #0d1b3e;
    --card2: #1a0d2e;
    --card3: #1a1a0d;
    --glow: 0 0 40px rgba(0,245,196,0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    /* cursor: none; */
  }

  .wrapper{
    min-height: 100dvh;
    display: grid;
    grid-template-rows: 1fr;
  }

  /* Custom cursor */
  .cursor {
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(0,245,196,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.15s ease;
  }

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

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 50;
    padding: 0.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(5,8,16,0.8);
    backdrop-filter: blur(20px);
    animation: slideDown 0.6s ease both;
  }
  @keyframes slideDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0,245,196,0.5);
  }

.logosvg {
    max-height: 30px; 
    fill: var(--accent);
    filter:drop-shadow( 0 0 10px rgba(0,245,196,0.5));
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    font-family: 'Space Mono', monospace;
    text-decoration: none;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    /* cursor: none; */
    text-transform: uppercase;
    transition: all 0.25s;
  }
  .nav-cta:hover { background: var(--accent); color: var(--bg); box-shadow: var(--glow); }

  /* HERO */
  .hero {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 4rem 4rem 4rem;
    position: relative; overflow: hidden;
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,245,196,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,245,196,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
    animation: gridPulse 6s ease-in-out infinite;
  }
  @keyframes gridPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  .orb1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,245,196,0.12), transparent); right: -100px; top: -100px; animation: float1 8s ease-in-out infinite; }
  .orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(123,94,167,0.15), transparent); left: 20%; bottom: 0; animation: float2 10s ease-in-out infinite; }
  @keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
  @keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--accent);
    display: block;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 5vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.5s ease both;
    color: var(--muted);
  }
  .hero-title .line2 { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.25); }
  .hero-title .accent { color: var(--accent); }

  .hero-sub {
    max-width: 480px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.7s ease both;
  }

  .hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    animation: fadeUp 0.8s 0.9s ease both;
  }
  .btn-primary {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    background: var(--accent);
    color: var(--bg);
    border: none; 
    /* cursor: none; */
    font-weight: 700;
    transition: all 0.25s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { box-shadow: 0 0 50px rgba(0,245,196,0.4); transform: translateY(-2px); }
  .btn-ghost {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: none; 
    border: none; 
    /* cursor: none; */
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); }

  .scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 1rem;
    animation: fadeUp 1s 1.2s ease both;
  }
  .scroll-line { width: 50px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
  .scroll-line::after { content: ''; position: absolute; top:0; left:-100%; width:100%; height:100%; background: var(--accent); animation: scanLine 2s ease-in-out infinite; }
  @keyframes scanLine { 0%{left:-100%} 100%{left:100%} }

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

  /* STATS BAR */
  .stats-bar {
    padding: 2rem 4rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-around; align-items: center;
    background: var(--surface);
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }
  .stat-divider { width: 1px; height: 40px; background: var(--border); }

  /* CARDS SECTION */
  .cards-section {
    padding: 8rem 4rem;
    position: relative;
  }
  .section-header {
    margin-bottom: 5rem;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 2rem;
  }
  .section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
  }
  .section-desc {
    max-width: 320px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    flex-shrink: 0;
  }

  /* 3D CARD GRID */
  .cards-grid {
    padding: 4rem 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem; 
    perspective: 1200px;
  }

  .card-3d {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content:left; 
    aspect-ratio: 1 / 1;
    max-height: 40dvh;
    min-width: 350px;
    filter:drop-shadow( 15px 15px 5px rgba(49, 107, 83, 0.5)); 
    border-radius: 30px;
    /* border: 1px solid var(--border); */
    padding: 1.5rem;
    background: var(--surface);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), box-shadow 0.6s ease;
    /* cursor: none; */
    overflow: hidden;
    animation: cardIn 0.7s ease-in;
    z-index: 1;
  }
  /* .card-3d:nth-child(1) { animation-delay: 0.1s; }
  .card-3d:nth-child(2) { animation-delay: 0.2s; }
  .card-3d:nth-child(3) { animation-delay: 0.3s; }
  .card-3d:nth-child(4) { animation-delay: 0.4s; }
  .card-3d:nth-child(5) { animation-delay: 0.5s; }
  .card-3d:nth-child(6) { animation-delay: 0.6s; } */
  @keyframes cardIn { from{opacity:0;transform:translateY(40px) rotateX(10deg)} to{opacity:1;transform:translateY(0) rotateX(0)} }

  /* Card glow corner */
  .card-3d::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }

  .card-3d:hover {transform: translateY(-50px);} 


  .card-extend{
    position:absolute;
    display: flex;
    align-items: flex-end;
    /* aspect-ratio: 1 / 1; */
    min-height: 100%;
    min-width: 100%;
    filter:drop-shadow( 15px 15px 5px rgba(49, 107, 83, 0.5)); 
    border-radius: 30px;
    padding: 2.5rem 2.5rem 1rem; 
    background-color: #050d1f;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), box-shadow 0.6s ease; 
    animation: cardIn 0.7s ease-in;
  }
  @keyframes cardextendIn { from{opacity:0;} to{opacity:1;} }

  .card-3d:hover ~.card-extend{
    visibility: visible; 
    transform: translateY(75px); 
  }

  /* Individual card themes */
  .card-3d.c1 { background-color: #eaf2f4; background-image:  url("Boundazmockup.png"); background-size: cover;} 
  .card-3d.c1::before { background: radial-gradient(ellipse at 30% 30%, rgba(0,245,196,0.08), transparent 60%); }
  .card-3d.c1:hover { box-shadow: 0 30px 80px rgba(0,245,196,0.15), 0 0 0 1px rgba(0,245,196,0.2); }
  .card-3d.c1:hover::before { opacity: 1; }

  .card-3d.c2 { background: #b4b4b4 50% url("/Comingsoon.png");  background-blend-mode:luminosity;} 
  .card-3d.c2::before { background: radial-gradient(ellipse at 30% 30%, rgba(123,94,167,0.1), transparent 60%); }
  .card-3d.c2:hover { box-shadow: 0 30px 80px rgba(123,94,167,0.2), 0 0 0 1px rgba(123,94,167,0.25); }
  .card-3d.c2:hover::before { opacity: 1; }

  .card-3d.c3 { background: linear-gradient(135deg, #100808 0%, #2a1010 100%); }
  .card-3d.c3::before { background: radial-gradient(ellipse at 30% 30%, rgba(255,107,107,0.08), transparent 60%); }
  .card-3d.c3:hover { box-shadow: 0 30px 80px rgba(255,107,107,0.15), 0 0 0 1px rgba(255,107,107,0.2); }
  .card-3d.c3:hover::before { opacity: 1; }

  .card-3d.c4 { background: linear-gradient(135deg, #0a0e18 0%, #15201a 100%); }
  .card-3d.c4::before { background: radial-gradient(ellipse at 30% 30%, rgba(0,245,100,0.06), transparent 60%); }
  .card-3d.c4:hover { box-shadow: 0 30px 80px rgba(0,245,100,0.12), 0 0 0 1px rgba(0,245,100,0.2); }
  .card-3d.c4:hover::before { opacity: 1; }

  .card-3d.c5 { background: linear-gradient(135deg, #0f0a08 0%, #201508 100%); }
  .card-3d.c5::before { background: radial-gradient(ellipse at 30% 30%, rgba(255,209,102,0.08), transparent 60%); }
  .card-3d.c5:hover { box-shadow: 0 30px 80px rgba(255,209,102,0.12), 0 0 0 1px rgba(255,209,102,0.2); }
  .card-3d.c5:hover::before { opacity: 1; }

  .card-3d.c6 { background: linear-gradient(135deg, #060a14 0%, #0d1525 100%); }
  .card-3d.c6::before { background: radial-gradient(ellipse at 30% 30%, rgba(100,160,255,0.08), transparent 60%); }
  .card-3d.c6:hover { box-shadow: 0 30px 80px rgba(100,160,255,0.12), 0 0 0 1px rgba(100,160,255,0.2); }
  .card-3d.c6:hover::before { opacity: 1; }

  /* Card inner shine */
  .card-shine {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%); 
    pointer-events: none;
    border-radius: inherit;
  }

  .card-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transform: translateZ(30px);
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  }
  .card-3d:hover .card-icon-wrap { transform: translateZ(50px) scale(1.05); }

  .icon-svg { width: 32px; height: 32px; }

  /* Icon bg colors per card */
  .c1 .card-icon-wrap { background: rgba(0,245,196,0.1); border: 1px solid rgba(0,245,196,0.2); }
  .c2 .card-icon-wrap { background: rgba(123,94,167,0.12); border: 1px solid rgba(123,94,167,0.25); }
  .c3 .card-icon-wrap { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.2); }
  .c4 .card-icon-wrap { background: rgba(0,245,100,0.08); border: 1px solid rgba(0,245,100,0.2); }
  .c5 .card-icon-wrap { background: rgba(255,209,102,0.08); border: 1px solid rgba(255,209,102,0.2); }
  .c6 .card-icon-wrap { background: rgba(100,160,255,0.08); border: 1px solid rgba(100,160,255,0.2); }

  .card-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
  }
  .c1 .card-badge { background: rgba(0,245,196,0.1); color: var(--accent); border: 1px solid rgba(0,245,196,0.2); }
  .c2 .card-badge { background: rgba(123,94,167,0.15); color: #b09fd0; border: 1px solid rgba(123,94,167,0.3); }
  .c3 .card-badge { background: rgba(255,107,107,0.1); color: #ff9a9a; border: 1px solid rgba(255,107,107,0.2); }
  .c4 .card-badge { background: rgba(0,245,100,0.08); color: #70f0a0; border: 1px solid rgba(0,245,100,0.2); }
  .c5 .card-badge { background: rgba(255,209,102,0.1); color: #ffd166; border: 1px solid rgba(255,209,102,0.2); }
  .c6 .card-badge { background: rgba(100,160,255,0.08); color: #88b0ff; border: 1px solid rgba(100,160,255,0.2); }

  .card-title {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text);
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    transform: translateZ(20px);
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
    animation: cardextendIn 2s ease-in;
  }
  .card-3d:hover .card-title { transform: translateZ(35px); }

  .card-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 0;
    animation: cardextendIn 2s ease-in;
  }

  .card-footer {
    align-items:end; justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    transform: translateZ(15px);
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  }
  .card-3d:hover .card-footer { transform: translateZ(30px); }

  .card-meta {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .card-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--muted);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
  }
  .card-3d:hover .card-arrow { background: var(--accent); border-color: var(--accent); }
  .card-3d:hover .card-arrow svg { stroke: var(--bg); } 
  .card-arrow svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2; }

  /* MARQUEE */
  .marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    overflow: hidden;
    background: rgba(0,245,196,0.02);
  }
  .marquee-track {
    display: flex; gap: 4rem;
    animation: marquee 20s linear infinite;
    width: max-content;
  }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .marquee-item {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    display: flex; align-items: center; gap: 1rem;
  }
  .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

  /* CTA SECTION */
  .cta-section {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,245,196,0.06), transparent 60%);
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }
  .cta-title span { color: var(--accent); }
  .cta-sub { font-size: 1rem; color: var(--muted); margin-bottom: 3rem; font-weight: 300; }
  .cta-input-row {
    display: flex; gap: 0; max-width: 480px; margin: 0 auto;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
  }
  .cta-input {
    flex: 1;
    background: none; border: none; outline: none;
    padding: 1rem 1.5rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
  }
  .cta-input::placeholder { color: var(--muted); }
  .cta-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 1.8rem;
    background: var(--accent);
    color: var(--bg);
    border: none; 
    /* cursor: none; */
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .cta-btn:hover { filter: brightness(1.1); }

  /* FOOTER */
  footer {

    background-color: #ffffff;
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--accent);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--muted);
  }
    .footer-logosvg {
    position: relative;
    max-height: 30px;
    fill: var(--muted);
    vertical-align: bottom; 
    
  }
  .footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header { flex-direction: column; align-items: flex-start; }
    .section-desc { max-width: 100%; }
  }
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 8rem 1.5rem 4rem; }
    .scroll-indicator { left: 1.5rem; }
    .stats-bar { padding: 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
    .stat-divider { display: none; }
    .cards-section { padding: 5rem 1.5rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 5rem 1.5rem; }
    footer { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .cta-input-row { flex-direction: column; }
  }
