:root {
      --black: #0a0a0a;
      --white: #f5f5f0;
      --accent: #c8f547;
      --accent2: #47f5c8;
      --mid: #1a1a1a;
      --border: rgba(255,255,255,0.08);
      --text-muted: rgba(245,245,240,0.45);
      --text-soft: rgba(245,245,240,0.72);
      --card-bg: rgba(255,255,255,0.03);
      --font-head: 'Source Sans 3', sans-serif;
      --font-body: 'Source Sans 3', sans-serif;
      --radius: 2px;
      --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    .mx-250 {max-width: 130px !important;}

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

    /* ── NAV ── */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 2rem;
      background: #000;
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      transition: background var(--transition);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px; max-width: 1300px; margin: 0 auto;
    }
    .nav-logo {
      font-family: var(--font-head);
      font-size: 1.25rem; font-weight: 800;
      letter-spacing: -.02em; color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
    .nav-links a {
      color: var(--text-soft); font-size: .83rem; font-weight: 500;
      text-decoration: none; letter-spacing: .04em; text-transform: uppercase;
      transition: color var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
      background: var(--accent); transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--accent); color: var(--black) !important;
      padding: .45rem 1.2rem; font-weight: 700 !important;
      border-radius: var(--radius); letter-spacing: .03em !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--white) !important; }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-nav {
      display: none; flex-direction: column; gap: 0;
      background: rgba(10,10,10,0.97); border-top: 1px solid var(--border);
      position: absolute; top: 100%; left: 0; right: 0;
      padding: 1.5rem 2rem 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { color: var(--text-soft); text-decoration: none; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
    .mobile-nav a:last-child { border-bottom: none; }

    @media(max-width:900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: -1; pointer-events: none;
      background-image: 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.035'/%3E%3C/svg%3E");
      opacity: .4;
    }

    /* ── HERO ── */
    #home {
      min-height: 100vh; display: flex; align-items: center;
      padding: 120px 2rem 80px;
      position: relative; overflow: hidden;
      background-image: url(images/banner.jpg);
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero-grid-lines {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(200,245,71,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,245,71,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute; top: -200px; right: -200px;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,245,71,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-glow2 {
      position: absolute; bottom: -100px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(71,245,200,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner { max-width: 1300px; margin: 0 auto; width: 100%; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1px solid rgba(200,245,71,0.3); padding: .3rem .9rem;
      border-radius: 100px; font-size: .72rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 2rem;
      animation: fadeUp .6s ease both;
    }
    .hero-tag span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

    .hero-headline {
      font-family: var(--font-head);
      font-size: clamp(2rem, 6vw, 4rem);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -.03em;
      animation: fadeUp .7s .1s ease both;
    }
    .hero-headline em { font-style: normal; color: var(--accent); }
    .hero-sub {
      max-width: 560px; margin-top: 1.5rem;
      color: var(--text-soft); font-size: 1.05rem; font-weight: 300;
      animation: fadeUp .7s .2s ease both;
    }
    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem;
      animation: fadeUp .7s .3s ease both;
    }
    .btn-primary-custom {
      background: var(--accent); color: var(--black);
      padding: .75rem 2rem; font-weight: 700; border: none;
      border-radius: var(--radius); font-size: .9rem; cursor: pointer;
      font-family: var(--font-body); transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .btn-primary-custom::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.15); opacity: 0; transition: opacity var(--transition);
    }
    .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,245,71,0.3); }
    .btn-primary-custom:hover::after { opacity: 1; }

    .btn-outline-custom {
      background: transparent; color: var(--white);
      padding: .75rem 2rem; font-weight: 500; border: 1px solid var(--border);
      border-radius: var(--radius); font-size: .9rem; cursor: pointer;
      font-family: var(--font-body); transition: var(--transition);
    }
    .btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

    .hero-trust {
      margin-top: 3rem; display: flex; gap: 2rem; flex-wrap: wrap;
      animation: fadeUp .7s .4s ease both;
    }
    .trust-pill {
      display: flex; align-items: center; gap: .5rem;
      color: var(--text-muted); font-size: .78rem; font-weight: 400;
    }
    .trust-pill i { color: var(--accent); font-size: .7rem; }

    .hero-visual {
      position: relative; margin-top: 5rem;
      animation: fadeUp .8s .5s ease both;
    }
    .hero-dashboard {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 1.5rem;
      position: relative; overflow: hidden;
    }
    .hero-dashboard::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    .dash-header { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dash-dot:nth-child(1) { background: #ff5f57; }
    .dash-dot:nth-child(2) { background: #febc2e; }
    .dash-dot:nth-child(3) { background: #28c840; }
    .dash-stats {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem;
    }
    .dash-stat {
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      border-radius: 4px; padding: 1rem; text-align: center;
    }
    .dash-stat-val {
      font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
      color: var(--accent); line-height: 1;
    }
    .dash-stat-label { font-size: .7rem; color: var(--text-muted); margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }
    .dash-bar-row { display: flex; gap: .5rem; align-items: center; margin-bottom: .6rem; }
    .dash-bar-label { font-size: .72rem; color: var(--text-soft); width: 90px; flex-shrink: 0; }
    .dash-bar-track { flex: 1; background: rgba(255,255,255,0.06); border-radius: 2px; height: 5px; }
    .dash-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }
    .dash-bar-fill.alt { background: var(--accent2); }
    .dash-bar-fill.alt2 { background: #f5a847; }

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

    /* ── SECTION COMMONS ── */
    section { padding: 100px 2rem; position: relative; }
    .section-inner { max-width: 1300px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      font-size: .7rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 1.2rem;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800; line-height: 1.12; letter-spacing: -.025em;
    }
    .section-title em { font-style: normal; color: var(--accent); }
    .section-sub { color: var(--text-soft); max-width: 540px; margin-top: 1rem; font-weight: 300; }

    /* ── POSITIONING ── */
    #positioning { background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .pos-items { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
    .pos-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.2rem; border: 1px solid var(--border);
      border-radius: 4px; background: var(--card-bg);
      transition: border-color var(--transition), transform var(--transition);
      cursor: default;
    }
    .pos-item:hover { border-color: var(--accent); transform: translateX(4px); }
    .pos-icon {
      width: 38px; height: 38px; border-radius: 3px;
      background: rgba(200,245,71,0.1); display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1rem; flex-shrink: 0;
    }
    .pos-item-title { font-family: var(--font-head); font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
    .pos-item-desc { font-size: .82rem; color: var(--text-soft); }

    .pos-right { position: relative; }
    .pos-big-text {
      font-family: var(--font-head); font-size: clamp(5rem, 12vw, 9rem);
      font-weight: 800; letter-spacing: -.06em; line-height: 1;
      color: rgba(255,255,255,0.04); user-select: none; pointer-events: none;
      position: relative;
    }
    .pos-card-float {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      background: rgba(20,20,20,0.9); border: 1px solid var(--border);
      border-radius: 6px; padding: 2rem; min-width: 260px; text-align: center;
      backdrop-filter: blur(20px);
    }
    .pos-card-float h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
    .pos-card-float p { font-size: .82rem; color: var(--text-soft); }
    .pos-card-float .big-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; margin: 1rem 0 .5rem; }

    @media(max-width:768px) { .pos-grid { grid-template-columns: 1fr; gap: 2rem; } }

    /* ── WHAT WE DELIVER ── */
    #deliver .deliver-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
      margin-top: 3rem;
    }
    .deliver-card {
      background: var(--card-bg); padding: 2.5rem 2rem;
      border: 1px solid transparent;
      transition: background var(--transition), border-color var(--transition);
      position: relative; overflow: hidden;
    }
    .deliver-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0;
      background: var(--accent); transition: height var(--transition);
    }
    .deliver-card:hover { background: rgba(200,245,71,0.04); border-color: rgba(200,245,71,0.15); }
    .deliver-card:hover::before { height: 100%; }
    .deliver-num {
      font-family: var(--font-head); font-size: .65rem; font-weight: 700;
      letter-spacing: .12em; color: var(--accent); margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .deliver-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .deliver-icon { font-size: 2.8rem; color: var(--accent); margin-bottom: 1rem; }
    .deliver-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .75rem; }
    .deliver-card p { font-size: 1rem; color: var(--text-soft); line-height: 1.7; }

    /* ── PLATFORM ── */
    #platform { background: var(--mid); }
    .platform-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .platform-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border); border-radius: 4px;
      padding: 2rem 1.8rem; position: relative; overflow: hidden;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
      cursor: default;
    }
    .platform-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(200,245,71,0.06) 0%, transparent 60%);
      opacity: 0; transition: opacity var(--transition);
    }
    .platform-card:hover { transform: translateY(-6px); border-color: rgba(200,245,71,0.25); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
    .platform-card:hover::after { opacity: 1; }
    .platform-badge {
      display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--black); background: var(--accent);
      padding: .2rem .6rem; border-radius: 2px; margin-bottom: 1.2rem;
    }
    .platform-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
    .platform-card p { font-size: 1rem; color: var(--text-soft); line-height: 1.7; }
    .platform-card .platform-icon {
      font-size: 2rem; color: rgba(200,245,71,0.3); position: absolute;
      bottom: 1.5rem; right: 1.5rem; transition: color var(--transition);
    }
    .platform-card:hover .platform-icon { color: var(--accent); }

    /* ── HOW WE WORK ── */
    #process { 
      overflow: hidden; 
      background: url(images/banner3.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    
    }
    .max-200 {
      max-width: 200px;
      height: 100px;
    }

    
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; margin-top: 3.5rem; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
    }
    .process-step {
      padding: 2.5rem 1.8rem; border-right: 1px solid var(--border);
      position: relative; overflow: hidden;
      transition: background var(--transition);
      cursor: default;
    }
    .process-step:last-child { border-right: none; }
    .process-step::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: var(--accent); transform: scaleX(0); transform-origin: left;
      transition: transform var(--transition);
    }
    .process-step:hover { background: rgba(200,245,71,0.03); }
    .process-step:hover::before { transform: scaleX(1); }
    .step-num {
      font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
      color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 1rem;
      color: #fff;
    }
    .step-label {
      font-size: .65rem; font-weight: 700; letter-spacing: .1em; color: var(--accent);
      text-transform: uppercase; margin-bottom: .75rem;
    }
    .process-step h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
    .process-step p { font-size: 1rem; color: var(--text-soft); line-height: 1.7; }

    @media (max-width: 991px) {
      #deliver .deliver-grid{grid-template-columns: 1fr;}
          .process-steps {
        grid-template-columns: 1fr;
    }
    .clients-grid {
      grid-template-columns: 1fr !important;
    }
    #why .why-grid {
          grid-template-columns: 1fr !important;
    }
    .cta-btns {
      flex-direction: column;
    }
    .footer-col ul {
      padding-left: 0 !important;
    }
    .footer-pills {
      flex-direction: column;
    }
    }
    @media(max-width:768px) { .process-steps { grid-template-columns: 1fr; } .process-step { border-right: none; border-bottom: 1px solid var(--border); } }
    @media(max-width:480px) { .process-steps { grid-template-columns: 1fr; } }

    /* ── WHO WE WORK WITH ── */
    #clients { background: var(--mid); }
    .clients-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .client-card {
      padding: 1.8rem; border: 1px solid var(--border);
      border-radius: 4px; background: var(--card-bg);
      display: flex; align-items: flex-start; gap: 1rem;
      transition: border-color var(--transition), background var(--transition), transform var(--transition);
      cursor: default;
    }
    .client-card:hover { border-color: var(--accent); background: rgba(200,245,71,0.04); transform: translateY(-4px); }
    .client-card-icon {
      width: 44px; height: 44px; border-radius: 4px;
      background: rgba(200,245,71,0.08); display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1.2rem; flex-shrink: 0;
    }
    .client-card-text h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
    .client-card-text p { font-size: .8rem; color: var(--text-soft); }

    /* ── STATS TICKER ── */
    .stats-bar {
      background: var(--accent); padding: .85rem 0; overflow: hidden;
    }
    .stats-ticker {
      display: flex; gap: 4rem; animation: ticker 20s linear infinite;
      white-space: nowrap;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-item {
      display: flex; align-items: center; gap: .75rem;
      font-family: var(--font-head); font-weight: 800; font-size: .8rem;
      color: var(--black); letter-spacing: .04em; text-transform: uppercase; flex-shrink: 0;
    }
    .ticker-dot { width: 4px; height: 4px; background: var(--black); border-radius: 50%; opacity: .4; }

    /* ── WHY ALPHAX ── */
    #why .why-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
    }
    .why-item {
      display: flex; gap: 1.2rem; padding: 1.5rem;
      border: 1px solid var(--border); border-radius: 4px;
      transition: border-color var(--transition), background var(--transition);
    }
    .why-item:hover { border-color: rgba(200,245,71,0.25); background: rgba(200,245,71,0.03); }
    .why-icon {
      width: 42px; height: 42px; background: rgba(200,245,71,0.1);
      border-radius: 3px; display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1.1rem; flex-shrink: 0;
      transition: background var(--transition);
    }
    .why-item:hover .why-icon { background: rgba(200,245,71,0.2); }
    .why-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
    .why-item p { font-size: .82rem; color: var(--text-soft); line-height: 1.65; }
    @media(max-width:600px) { .why-grid { grid-template-columns: 1fr; } }

    /* ── FINAL CTA ── */
    #cta {
      background: var(--mid);
      border-top: 1px solid var(--border);
      text-align: center; position: relative; overflow: hidden;
    }
    #cta .cta-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,245,71,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    #cta .section-title { font-size: clamp(2rem,5vw,3.8rem); }
    #cta .section-sub { margin: 1.2rem auto; text-align: center; font-size: 1rem;}
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

    /* ── FOOTER ── */
    footer {
      background: #050505; border-top: 1px solid var(--border);
      padding: 4rem 2rem 2rem;
    }
    .footer-inner { max-width: 1300px; margin: 0 auto; }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
    }
    .footer-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; margin-bottom: .75rem; }
    .footer-logo span { color: var(--accent); }
    .footer-tagline { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.2rem; }
    .footer-contact { font-size: .8rem; color: var(--text-soft); }
    .footer-contact a { color: var(--accent); text-decoration: none; }
    .footer-col h5 { font-family: var(--font-head); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .footer-col ul li a { color: var(--text-soft); text-decoration: none; font-size: .83rem; transition: color var(--transition); }
    .footer-col ul li a:hover { color: var(--accent); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: .75rem; color: var(--text-muted); }
    .footer-pills { display: flex; gap: .75rem; }
    .footer-pill {
      border: 1px solid var(--border); padding: .2rem .75rem;
      border-radius: 100px; font-size: .68rem; color: var(--text-muted);
      letter-spacing: .04em;
    }
    @media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    @media(max-width:500px) { .footer-top { grid-template-columns: 1fr; } }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: .05s; }
    .reveal-d2 { transition-delay: .15s; }
    .reveal-d3 { transition-delay: .25s; }
    .reveal-d4 { transition-delay: .35s; }

    /* ── ANIMATED GRADIENT LINE ── */
    .grad-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
      background-size: 200% 100%;
      animation: gradMove 4s linear infinite;
    }
    @keyframes gradMove { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

    /* ── BACK TO TOP ── */
    #toTop {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 44px; height: 44px; border-radius: 3px;
      background: var(--accent); color: var(--black);
      border: none; cursor: pointer; display: none;
      align-items: center; justify-content: center;
      font-size: 1.1rem; transition: transform var(--transition), box-shadow var(--transition);
      z-index: 900;
    }
    #toTop.show { display: flex; }
    #toTop:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(200,245,71,0.35); }