/* GraphLinq Landing — Source-grounded rebuild */
/* Palette: bg #080810 | fg #f8f8f8 | accent #a068f8 | surface #303030 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Gilroy via CDN (Webflow's Gilroy files) ---------- */
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.prod.website-files.com/65de56ee9ed70741bfc4efc6/65de586d919454aa302d049e_Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.prod.website-files.com/65de56ee9ed70741bfc4efc6/65de586d877b8e1a1b174ac0_Gilroy-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080810;
  --fg:       #f8f8f8;
  --accent:   #a068f8;
  --surface:  #0f0f1a;
  --surface2: #1a1a2e;
  --border:   rgba(248,248,248,0.10);
  --muted:    rgba(248,248,248,0.55);

  --font-base: 'Gilroy', 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --max-w: 1200px;
  --px: clamp(1.25rem, 5vw, 3rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  padding: 14px 34px;
  min-height: 52px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover {
  background: #d8b8ff;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(160,104,248,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: rgba(248,248,248,0.4);
  background: rgba(248,248,248,0.06);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: #b880ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(160,104,248,0.45);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.875rem;
  min-height: 40px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.nav-links .nav-dropdown {
  position: relative;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links .nav-dropdown:hover { color: var(--fg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: 2rem var(--px);
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu .nav-dropdown {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { align-self: flex-start; margin-top: 0.5rem; }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,16,0.2) 0%,
    rgba(8,8,16,0.0) 40%,
    rgba(8,8,16,0.85) 80%,
    rgba(8,8,16,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5rem 0 4rem;
}

.hero-inner {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160,104,248,0.12);
  border: 1px solid rgba(160,104,248,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c8a0ff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--fg);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c8a0ff 0%, #a068f8 50%, #7840e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

/* hero right illustration */
.hero-visual {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-45%);
  width: clamp(300px, 48%, 640px);
  z-index: 1;
  pointer-events: none;
}
.hero-visual img { width: 100%; border-radius: var(--radius-lg); }

@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-inner { max-width: 100%; }
}

/* ---------- Section shared ---------- */
section { padding: 6rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 700px;
}

.section-title.centered { text-align: center; margin: 0 auto; }

.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 0.875rem;
}

.section-sub.centered { text-align: center; margin: 0.875rem auto 0; }

.section-head { margin-bottom: 3.5rem; }

/* ---------- GLQ coin / chain identity ---------- */
.glq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160,104,248,0.1);
  border: 1px solid rgba(160,104,248,0.25);
  border-radius: 50px;
  padding: 5px 14px 5px 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c8a0ff;
}

.glq-coin {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- Adoption / CTA banner ---------- */
.adoption-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}

.adoption-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.adoption-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 500px;
}

.adoption-text p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1rem;
  max-width: 460px;
}

.adoption-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- Features product section ---------- */
.features-section {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: rgba(160,104,248,0.35);
  transform: translateY(-3px);
}

.feature-card-header {
  padding: 2rem 2rem 1.5rem;
}

.feature-card-icon {
  width: 44px; height: 44px;
  background: rgba(160,104,248,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-icon svg { width: 22px; height: 22px; color: var(--accent); }

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-card-img {
  width: 100%;
  display: block;
  border-top: 1px solid var(--border);
  max-height: 260px;
  object-fit: cover;
}

/* large feature card spans both columns */
.feature-card.wide {
  grid-column: 1 / -1;
}

.feature-card.wide .feature-card-img {
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Product section (full-width screenshots) ---------- */
.product-section { padding: 0; }

.product-block {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.product-block:last-child { border-bottom: none; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.product-layout.reverse { direction: rtl; }
.product-layout.reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .product-layout,
  .product-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
}

.product-text {}

.product-text .product-title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.product-text .product-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-small-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 560px) {
  .product-small-cards { grid-template-columns: 1fr; }
}

.small-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.small-card img {
  width: 100%;
  display: block;
}
.small-card-label {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.product-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ---------- Videos section ---------- */
.videos-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.video-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(160,104,248,0.4);
  transform: translateY(-3px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 48px; height: 48px;
  background: rgba(248,248,248,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.2s;
}
.video-card:hover .video-play-btn {
  transform: scale(1.12);
  background: #fff;
}
.video-play-btn svg {
  width: 18px; height: 18px;
  color: var(--bg);
  margin-left: 2px;
}

.video-info {
  padding: 1rem 1.125rem;
}
.video-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.video-info-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

/* ---------- Hub/staking section ---------- */
.hub-section { padding: 5rem 0; }

.hub-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 860px) {
  .hub-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hub-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hub-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hub-feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(160,104,248,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-feature-icon svg { width: 20px; height: 20px; color: var(--accent); }

.hub-feature-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.hub-feature-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.hub-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ---------- Chain explorer ---------- */
.explorer-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 0; }

.explorer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.explorer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.explorer-card-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}
.explorer-card-value {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.explorer-card-sub {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Staking section ---------- */
.staking-section { padding: 5rem 0; }

.staking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 860px) {
  .staking-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.staking-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 560px) {
  .staking-cards { grid-template-columns: 1fr; }
}

.staking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.staking-card-value {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.staking-card-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

.staking-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 5rem 0; overflow: hidden; }

.testimonials-bg {
  position: relative;
}

.testimonials-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  border-radius: var(--radius-xl);
}

.testimonials-wrapper {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem var(--px);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg {
  width: 16px; height: 16px;
  color: #f5c518;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}
.testimonial-author-role {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ---------- Connect / Social ---------- */
.connect-section { padding: 5rem 0; border-top: 1px solid var(--border); }

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.connect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.connect-card:hover {
  border-color: rgba(160,104,248,0.4);
  transform: translateY(-2px);
}

.connect-icon {
  width: 44px; height: 44px;
  background: rgba(160,104,248,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.connect-icon svg { width: 22px; height: 22px; color: var(--accent); }

.connect-card-name { font-weight: 700; font-size: 0.9375rem; }
.connect-card-sub { font-size: 0.8125rem; color: var(--muted); }

/* ---------- Footer ---------- */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

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

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--fg); }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Integrations ticker ---------- */
.ticker-wrap {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.ticker {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker:hover { animation-play-state: paused; }

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 0.5rem;
}

.ticker-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- GLQ logo SVG inline ---------- */
.logo-svg {
  fill: var(--fg);
}

/* ---------- Chain pill ---------- */
.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,248,248,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.chain-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: pulse-green 2.5s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 14px rgba(34,197,94,0.9); }
}

/* ---------- Blocks section ---------- */
.blocks-section { padding: 5rem 0; }

.blocks-visual {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.blocks-visual img {
  width: 100%;
  display: block;
}

.blocks-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 560px) { .blocks-mini-grid { grid-template-columns: 1fr; } }

.block-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.block-mini img { width: 100%; display: block; }
.block-mini-label {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
