   :root {
  --ff: 'Bricolage Grotesque', sans-serif;
  --fm: 'DM Mono', monospace;
  --neon: #06d6a0;      /* The green color used in your animations */
  --bg-dark2: #0b0f19;  /* A standard dark background */
}
/* ── Page-scoped styles ── */
.grs-hero { position:relative; overflow:hidden; padding:120px 0 100px; background:var(--bg-dark2); }
.grs-hero::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(6,214,160,.10) 0%, transparent 70%); pointer-events:none; }
.grs-hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.grs-kicker { display:inline-flex; align-items:center; gap:8px; font-family:var(--fm); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--neon); margin-bottom:18px; }
.grs-kicker-dot { width:7px; height:7px; border-radius:50%; background:var(--neon); animation:gdot 1.4s ease-in-out infinite; }
@keyframes gdot { 0%,100%{box-shadow:0 0 0 0 rgba(6,214,160,.8);} 50%{box-shadow:0 0 0 6px rgba(6,214,160,0);} }
.grs-h1 { font-family:var(--ff); font-size:var(--h1); font-weight:800; line-height:1.12; color:#fff; margin-bottom:20px; }
.grs-h1 em { color:var(--neon); font-style:normal; }
.grs-hero-sub { font-size:16px; color:rgba(255,255,255,.6); line-height:1.75; margin-bottom:32px; max-width:520px; }
.grs-ctas { display:flex; gap:14px; flex-wrap:wrap; }

/* terminal card */
.grs-term { background:rgba(255,255,255,.04); border:1px solid rgba(6,214,160,.15); border-radius:16px; overflow:hidden; }
.grs-term-bar { background:rgba(0,0,0,.3); padding:10px 16px; display:flex; align-items:center; gap:6px; }
.grs-term-dot { width:10px; height:10px; border-radius:50%; }
.grs-term-title { font-family:var(--fm); font-size:11px; color:rgba(255,255,255,.4); margin-left:8px; flex:1; }
.grs-live { font-family:var(--fm); font-size:10px; background:rgba(6,214,160,.15); border:1px solid rgba(6,214,160,.3); color:var(--neon); padding:2px 8px; border-radius:20px; }
.grs-term-body { padding:20px; display:flex; flex-direction:column; gap:12px; }
.grs-term-row { display:flex; align-items:center; gap:10px; }
.grs-term-lbl { font-family:var(--fm); font-size:12px; color:rgba(255,255,255,.5); width:120px; flex-shrink:0; }
.grs-term-track { flex:1; height:5px; background:rgba(255,255,255,.08); border-radius:3px; overflow:hidden; }
.grs-term-fill { height:100%; background:linear-gradient(90deg,var(--neon),rgba(6,214,160,.5)); border-radius:3px; animation:gfill .9s ease forwards; transform-origin:left; }
@keyframes gfill { from{width:0} }
.grs-term-val { font-family:var(--fm); font-size:12px; color:var(--neon); width:32px; text-align:right; }
.grs-term-sep { height:1px; background:rgba(255,255,255,.07); margin:4px 0; }
.grs-term-result { display:flex; justify-content:space-between; align-items:center; padding-top:4px; }
.grs-term-result-lbl { font-size:13px; color:rgba(255,255,255,.5); }
.grs-term-badge { background:var(--neon); color:var(--bg-dark); font-family:var(--fm); font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; letter-spacing:.05em; }
.grs-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px; }
.grs-stat { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:10px; padding:12px; text-align:center; }
.grs-stat-num { font-family:var(--fm); font-size:18px; font-weight:700; color:var(--neon); }
.grs-stat-lbl { font-size:11px; color:rgba(255,255,255,.4); margin-top:3px; line-height:1.3; }

/* breadcrumb */
.grs-bread { padding:14px 0; border-bottom:1px solid rgba(6,214,160,.08); background:var(--bg-dark3); }
.grs-bread-inner { display:flex; align-items:center; gap:8px; font-family:var(--fm); font-size:12px; color:rgba(255,255,255,.35); }
.grs-bread-inner a { color:rgba(255,255,255,.35); text-decoration:none; transition:.2s; }
.grs-bread-inner a:hover { color:var(--neon); }
.grs-bread-inner span { color:var(--neon); }
.grs-bread-sep { opacity:.4; }

/* sections */
.grs-sec { position:relative; overflow:hidden; padding:96px 0; }
.grs-sec-white { background:var(--bg-white); }
.grs-sec-soft { background:var(--bg-soft); }
.grs-sec-dark { background:var(--bg-dark2); }
.grs-sec-dark::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6,214,160,.07) 0%, transparent 70%); pointer-events:none; }
.grs-sec-ink { background:var(--bg-dark3); }

.grs-eyebrow { display:inline-flex; align-items:center; gap:8px; font-family:var(--fm); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--neon); margin-bottom:14px; }
.grs-eyebrow-dot { width:6px; height:6px; border-radius:50%; background:var(--neon); animation:gdot 1.4s ease-in-out infinite; }

.grs-h2 { font-family:var(--ff); font-size:var(--h2); font-weight:800; color:var(--ink-dark); line-height:1.18; margin-bottom:16px; }
.grs-h2 em { color:var(--neon); font-style:normal; }
.grs-h2-white { color:#fff; }
.grs-h3 { font-family:var(--ff); font-size:var(--h3); font-weight:700; color:var(--ink-dark); line-height:1.25; margin-bottom:14px; }
.grs-h3-white { color:#fff; }
.grs-body { font-size:15px; color:var(--ink-mid); line-height:1.8; text-align:justify; }
.grs-body-white { color:rgba(255,255,255,.7); }
.grs-center { text-align:center; }

/* 2-col grid */
.grs-grid2 { display:grid; grid-template-columns:1fr 1.3fr; gap:44px; align-items:center; }
.grs-grid2-rev { direction:rtl; }
.grs-grid2-rev > * { direction:ltr; }
.grs-grid1 { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; }
.grs-grid1-rev { direction:rtl; }
.grs-grid1-rev > * { direction:ltr; }
.grs-grid3 { display:grid; grid-template-columns:1.3fr 1fr; gap:44px; align-items:center; }
.grs-grid3-rev { direction:rtl; }
.grs-grid3-rev > * { direction:ltr; }


/* image wrapper */
.grs-img-wrap { position:relative; border-radius:16px; overflow:hidden; }
.grs-img-wrap img { width:100%; height:auto; display:block; border-radius:16px; transition:transform .5s ease; }
.grs-img-wrap:hover img { transform:scale(1.03); }
.grs-img-glow { position:absolute; inset:-1px; border-radius:16px; box-shadow:0 0 0 1px rgba(6,214,160,.2), 0 20px 60px rgba(6,214,160,.08); pointer-events:none; }

/* info cards grid */
.grs-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.grs-card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:16px; padding:28px 24px; transition:border-color .25s, box-shadow .25s; }
.grs-card:hover { border-color:rgba(6,214,160,.3); box-shadow:0 8px 32px rgba(6,214,160,.08); }
.grs-card-icon { width:48px; height:48px; margin:0 auto; margin-bottom:16px; }
.grs-card-icon img { width:48px; height:auto; }
.grs-card h4 { font-family:var(--ff); font-size:17px; font-weight:700; color:var(--ink-dark); margin-bottom:10px; text-align:center; }
.grs-card p { font-size:14px; color:var(--ink-mid); line-height:1.75; text-align:center;}

/* 6-cards grid */
.grs-cards3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grs-card-dark { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:16px; padding:28px 22px; transition:border-color .25s, transform .25s; }
.grs-card-dark:hover { border-color:rgba(6,214,160,.25); transform:translateY(-4px); }
.grs-card-dark-icon { width:44px; height:44px; margin:0 auto;margin-bottom:14px;  }
.grs-card-dark-icon img { width:44px; height:auto; }
.grs-card-dark p { font-size:14px; color:rgba(255,255,255,.55); line-height:1.75; text-align:center ; }

/* bullet points */
.grs-points { display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.grs-point { display:flex; align-items:center; gap:12px; font-size:15px; color:var(--ink-mid); }
.grs-point-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.grs-point-dot--green { background:var(--neon); }
.grs-point-dot--blue  { background:var(--neon-b); }
.grs-point-dot--gold  { background:var(--neon-gold); }
.grs-point-dot--purple{ background:var(--neon-p); }

/* section head centered */
.grs-sec-head { text-align:center; max-width:980px; margin:0 auto 56px; }

/* zammy spotlight */
.grs-spotlight { background:linear-gradient(135deg, rgba(6,214,160,.08) 0%, rgba(0,212,255,.05) 100%); border:1px solid rgba(6,214,160,.15); border-radius:20px; padding:40px 36px; }
.grs-spotlight-sub { font-size:12px; font-family:var(--fm); letter-spacing:.1em; text-transform:uppercase; color:var(--neon); margin-bottom:10px; }

/* newsletter */
.grs-nl { background:var(--neon); padding:64px 0; position:relative; overflow:hidden; }
.grs-nl::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 80% at 70% 50%, rgba(255,255,255,.15) 0%, transparent 70%); }
.grs-nl-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; position:relative; z-index:1; }
.grs-nl h4 { font-family:var(--ff); font-size:26px; font-weight:800; color:var(--bg-dark); }
.grs-nl-sub { font-size:14px; color:rgba(4,11,24,.65); margin-top:4px; }
.grs-nl-form { display:flex; gap:0; flex:1; max-width:420px; }
.grs-nl-input { flex:1; padding:14px 18px; border:none; border-radius:10px 0 0 10px; font-size:14px; outline:none; background:#fff; color:var(--ink-dark); }
.grs-nl-btn { padding:14px 22px; background:var(--bg-dark); color:#fff; border:none; border-radius:0 10px 10px 0; font-family:var(--fm); font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; transition:background .2s; }
.grs-nl-btn:hover { background:var(--bg-dark2); }

/* reveal animation */
.grs-rev { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.grs-rev.on { opacity:1; transform:none; }
.grs-rev.d1 { transition-delay:.05s; } .grs-rev.d2 { transition-delay:.15s; }
.grs-rev.d3 { transition-delay:.25s; } .grs-rev.d4 { transition-delay:.35s; }

/* responsive */
@media(max-width:1024px) {
  .grs-cards3 { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .grs-hero { padding:80px 0 60px; }
  .grs-hero-grid { grid-template-columns:1fr; gap:40px; }
  .grs-grid2 { grid-template-columns:1fr; gap:36px; }
  .grs-grid2-rev { direction:ltr; }
  .grs-grid1 { grid-template-columns:1fr; gap:36px; }
  .grs-grid1-rev { direction:ltr; }

   .grs-grid3 { grid-template-columns:1fr; gap:36px; }
  .grs-grid3-rev { direction:ltr; }

  .grs-cards { grid-template-columns:1fr; }
  .grs-cards3 { grid-template-columns:1fr; }
  .grs-nl-inner { flex-direction:column; align-items:flex-start; }
  .grs-nl-form { max-width:100%; width:100%; }
  .grs-ctas { flex-direction:column; }
  .grs-stats { grid-template-columns:repeat(3,1fr); }
  .grs-spotlight { padding:28px 20px; }
}
@media(max-width:480px) {
  .grs-stats { grid-template-columns:1fr 1fr; }
  .grs-sec { padding:64px 0; }
}