:root {
  --bg: #030303;
  --bg2: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a0a0a0;
  --muted2: #666666;
  
  --em: #10b981;      /* Smeraldo */
  --em-dim: rgba(16, 185, 129, 0.1);
  --vi: #8b5cf6;      /* Viola */
  --vi-dim: rgba(139, 92, 246, 0.1);
  --am: #f59e0b;      /* Ambra */
  --am-dim: rgba(245, 158, 11, 0.1);
  --bl: #3b82f6;      /* Blu */
  --bl-dim: rgba(59, 130, 246, 0.1);
  
  --font-main: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --section-pad: 120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { 
  background: var(--bg); 
  color: var(--text); 
  font-family: var(--font-main); 
  line-height: 1.6; 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: .2s; }
ul { list-style: none; }

/* UTILS */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: var(--section-pad) 24px; }
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.glow-text { text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.gradient-text { 
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAV */
nav {
  position: fixed; top: 38px; left: 0; width: 100%; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px; height: 65px;
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.logo { 
  font-family: var(--font-title); font-weight: 900; font-size: 1.2rem; 
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--bl); }
.nav-links { display: flex; gap: 32px; font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 700; border-bottom: 2px solid var(--bl); padding-bottom: 4px; }
.nav-cta {
  background: #fff; color: #000; padding: 10px 24px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; border: none; cursor: pointer;
  transition: 0.2s;
}
.nav-cta:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 100vw; max-width: 100vw; height: 100%;
  background: var(--bg); z-index: 2000; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transform: translate3d(100%, 0, 0); transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  visibility: hidden; pointer-events: none; contain: layout paint;
}
.mobile-menu.active { transform: translate3d(0, 0, 0); visibility: visible; pointer-events: auto; }
.mobile-menu a { font-size: 1.5rem; font-family: var(--font-title); font-weight: 700; color: var(--muted); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); }
.close-menu { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* TICKER */
.ticker-wrap {
  position: fixed; top: 103px; left: 0; width: 100%; z-index: 999;
  background: #000; border-bottom: 1px solid var(--border);
  height: 46px; overflow: hidden;
}
.tradingview-widget-container { width: 100%; height: 46px; }

/* HERO */
.hero { 
  min-height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; position: relative; padding-top: 180px; overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, var(--bl-dim) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--vi-dim) 0%, transparent 40%);
  z-index: -1;
}
.hero-grid {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  transform: perspective(1000px) rotateX(60deg) translateY(-200px);
  animation: grid-move 40s linear infinite;
}
@keyframes grid-move {
  from { background-position: 0 0; }
  to { background-position: 0 60px; }
}

.hero-eyebrow { 
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--bl); 
  margin-bottom: 16px; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-title { 
  font-family: var(--font-title); font-size: 5rem; font-weight: 900; 
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-sub { 
  max-width: 700px; font-size: 1.2rem; color: var(--muted); margin: 0 auto 48px; text-align: center;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; }
.btn-primary { 
  background: var(--bl); color: #fff; padding: 18px 40px; border-radius: 12px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  box-shadow: 0 10px 40px var(--bl-dim); transition: .2s; display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.4);
}
.btn-secondary { 
  background: var(--bg-card); border: 1px solid var(--border); color: #fff;
  padding: 18px 40px; border-radius: 12px; font-weight: 700; cursor: pointer; transition: .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--muted);
  transform: translateY(-2px);
}

/* SECTIONS COMMON */
.section-eyebrow { font-family: var(--font-mono); color: var(--bl); font-size: 0.75rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.15em; }
.section-title { font-family: var(--font-title); font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.section-subtitle { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin-bottom: 40px; }

/* DUAL TERMINAL SECTION */
.dual-feature {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center;
}
.terminal-viz {
  position: relative; background: #000; border: 1px solid var(--border); border-radius: 16px;
  padding: 4px; box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
.terminal-header {
  padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.terminal-body { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.account-card {
  background: var(--bg2); border: 1px solid var(--border); padding: 20px; border-radius: 12px;
  transition: .3s;
}
.account-card.active { border-color: var(--bl); box-shadow: 0 0 20px var(--bl-dim); }
.account-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.account-val { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.account-tag { font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; background: var(--bl-dim); color: var(--bl); }

/* EA VAULT */
.ea-catalog { margin-top: 60px; }
.ea-table {
  width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
}
.ea-table th { 
  text-align: left; padding: 20px; border-bottom: 1px solid var(--border); 
  font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.01);
}
.ea-table td { padding: 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; transition: .2s; }
.ea-table tr:hover td { background: rgba(255, 255, 255, 0.01); }
.ea-tag { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-family: var(--font-mono); font-weight: 600; display: inline-block; }
.tag-inst { background: var(--vi-dim); color: var(--vi); }
.tag-scalp { background: var(--em-dim); color: var(--em); }
.tag-quant { background: var(--am-dim); color: var(--am); }
.tag-arb { background: var(--bl-dim); color: var(--bl); }
.tag-trend { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.plan-note { color: var(--muted); font-size: 0.85rem; margin: -12px 0 24px; }

/* LEAD CAPTURE */
#lead-capture-container {
  background: var(--bl-dim);
  border: 1px solid var(--bl);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* PRICING */
#pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
}

/* CHARTING & INDICATORS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-box {
  background: var(--bg-card); border: 1px solid var(--border); padding: 32px; border-radius: 20px;
  transition: .4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform, border-color, background, box-shadow;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.feature-box:hover { 
  border-color: var(--bl); 
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-8px) translateZ(0);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.feature-box::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: 0.5s;
}
.feature-box:hover::after { left: 100%; }
.feature-box h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.feature-list { font-size: 0.85rem; color: var(--muted2); }
.feature-list span { color: var(--text); display: inline-block; margin-right: 8px; }

/* TESTIMONIALS */
.testimonials-section { border-top: 1px solid var(--border); background: var(--bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px;
  transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card:hover { border-color: var(--bl); transform: translateY(-4px); }
.testimonial-content { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; position: relative; font-style: italic; }
.testimonial-content::before { content: '“'; font-family: var(--font-title); font-size: 3rem; color: var(--bl-dim); position: absolute; top: -20px; left: -15px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--border); overflow: hidden; border: 1px solid var(--border); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h5 { font-family: var(--font-title); font-size: 0.95rem; font-weight: 700; color: #fff; }
.author-info span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--bl); text-transform: uppercase; letter-spacing: 0.05em; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; border-top: 1px solid var(--border); padding-top: 40px; text-align: center; }
.stat-box h3 { font-family: var(--font-title); font-size: 2.5rem; font-weight: 900; color: #fff; }
.stat-box h3 span { color: var(--bl); }
.stat-box p { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ABOUT US */
.about-section { border-top: 1px solid var(--border); background: var(--bg); }
.about-history { max-width: 800px; margin: 0 auto 100px; background: var(--bg-card); padding: 40px; border-radius: 20px; border: 1px solid var(--border); }
.about-history h3 { font-family: var(--font-title); margin-bottom: 20px; color: var(--bl); font-size: 1.6rem; }
.about-history p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-history p:last-child { margin-bottom: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { 
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; 
  transition: .3s cubic-bezier(0.2, 0.8, 0.2, 1); 
  will-change: transform, border-color;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.team-card:hover { border-color: var(--bl); transform: translateY(-5px) translateZ(0); }
.team-photo { width: 120px; height: 120px; border-radius: 50%; background: var(--bg-card); margin: 0 auto 24px; border: 2px solid var(--border); overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: 0.7rem; color: var(--bl); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.team-bio { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* RISK & REGULATORY DISCLAIMERS */
.risk-notice {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.risk-notice strong { color: var(--am); }
.risk-notice a { color: var(--am); text-decoration: underline; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 80px 0; background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { margin-bottom: 24px; font-size: 0.9rem; text-transform: uppercase; color: var(--muted2); }
.footer-links li { margin-bottom: 12px; font-size: 0.9rem; color: var(--muted); }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links span { display: inline-block; }
.footer-copy { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--muted2); display: flex; justify-content: space-between; }

/* WIP BANNER */
.wip-banner {
  background: var(--bg2);
  border-bottom: 1px solid var(--am);
  color: var(--am);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.7rem;
  font-weight: 700;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wip-dot {
  width: 6px;
  height: 6px;
  background: var(--am);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--am);
  animation: banner-pulse 1.5s infinite;
}
@keyframes banner-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* LOGO ANIMATIONS */
.spin-slow { animation: spin 8s linear infinite; transform-origin: center; }
.spin-reverse { animation: spin 12s linear reverse infinite; transform-origin: center; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.pulse-glow { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { filter: drop-shadow(0 0 2px var(--bl)); } 50% { filter: drop-shadow(0 0 12px var(--cy, #06b6d4)); } }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-col h3 { font-family: var(--font-title); font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.contact-info-col p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 24px; }
.contact-channel-card {
  display: flex; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); padding: 24px; border-radius: 16px;
  transition: 0.3s;
}
.contact-channel-card:hover { border-color: var(--bl); transform: translateX(5px); }
.channel-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bl-dim); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--bl); flex-shrink: 0; }
.channel-details h4 { font-family: var(--font-title); font-size: 1.1rem; margin-bottom: 4px; }
.channel-details p { font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.channel-details a { font-size: 0.9rem; color: var(--bl); font-weight: 600; text-decoration: underline; }

.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.8rem; font-family: var(--font-mono); color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.form-control { width: 100%; background: #000; border: 1px solid var(--border); border-radius: 8px; padding: 14px; color: #fff; font-family: var(--font-main); outline: none; transition: 0.2s; }
.form-control:focus { border-color: var(--bl); box-shadow: 0 0 10px var(--bl-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .dual-feature { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .testimonial-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .hero-title { font-size: 2.8rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 2.2rem; }
  .grid-3, .testimonial-grid, .team-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  
  nav { padding: 16px 20px; top: 38px; height: 58px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  
  body { width: 100%; max-width: 100vw; overflow-x: hidden; }
  .ticker-wrap { top: 96px; }
  .hero { padding: 160px 24px 40px; min-height: auto; }
  .hero-grid { width: 100vw; left: 0; transform: perspective(900px) rotateX(60deg) translateY(-180px); }
  .hero img { max-width: 100%; height: auto; }
  .wip-banner { min-height: 38px; padding: 8px 16px; font-size: 0.62rem; line-height: 1.4; }
  
  .ea-catalog { overflow: visible; }
  .ea-table, .ea-table tbody, .ea-table tr, .ea-table td { display: block; width: 100%; }
  .ea-table { min-width: 0; border-collapse: separate; background: transparent; border: 0; }
  .ea-table thead { display: none; }
  .ea-table tr {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
  }
  .ea-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
  }
  .ea-table td:last-child { border-bottom: 0; }
  .ea-table td::before {
    content: "";
    display: block;
    margin-bottom: 4px;
    color: var(--muted2);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .ea-table td:nth-child(1)::before { content: "Expert Advisor"; }
  .ea-table td:nth-child(2)::before { content: "Categoria"; }
  .ea-table td:nth-child(3)::before { content: "Logica principale"; }
  .ea-table td:nth-child(4)::before { content: "Timeframe"; }

  #lead-capture-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    padding: 28px 20px !important;
    margin: 0 0 56px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }
  #lead-text-container h3 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
  }
  #lead-text-container p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  #lead-form-container,
  #email-step-form,
  #code-step-form,
  #google-signup-btn {
    width: 100% !important;
    max-width: 100% !important;
  }
  #email-step-form,
  #code-step-form > div:first-of-type {
    flex-direction: column !important;
    gap: 12px !important;
  }
  #email-step-form input,
  #email-step-form button,
  #code-step-form input,
  #code-step-form button,
  #google-signup-btn {
    width: 100% !important;
    min-width: 0 !important;
  }
  #google-signup-btn {
    white-space: normal !important;
    line-height: 1.25 !important;
  }
  
  #pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding-top: 24px !important;
    align-items: stretch !important;
  }
  .feature-box { width: 100% !important; max-width: 400px !important; transform: none !important; margin-bottom: 0 !important; }
  .feature-box h3 { font-size: 1.5rem; margin-top: 10px; }
  .feature-box div[style*="font-size: 3rem"] { font-size: 2.8rem !important; margin: 15px 0 !important; }
  .feature-box ul { margin-bottom: 30px !important; }
  .feature-box .btn-primary, .feature-box .btn-secondary { padding: 20px !important; font-size: 1.1rem !important; }
  
  #quant > div > div { grid-template-columns: 1fr !important; gap: 40px !important; }
  
  #pricing .section-wrap { padding-left: 20px !important; padding-right: 20px !important; }
  
  .contact-grid { gap: 48px; }
}
