/* =========================================================
   GameChanger Wallet — Modern Cyberpunk Bootstrap Theme
   ========================================================= */

:root{
  /* 6-color palette (2 mains + 4 accents) — aligned to QR Hunt */
  --gc-ink: #050214;        /* ultra-dark base */
  --gc-ink-2: #070424;      /* secondary dark */
  --gc-card: #000000;       /* card black */

  --gc-blue: #4aa3ff;       /* MAIN 1 (electric blue) */
  --gc-violet: #7a33ff;     /* MAIN 2 (electric violet) */
  --gc-cyan: #00f2ff;       /* accent (micro-shine) */
  --gc-magenta: #ff2fd6;    /* accent (sparks) */

  /* Back-compat aliases used across the sheet */
  --gc-purple: var(--gc-violet);

  --gc-text: #eafcff;
  --gc-muted: rgba(234, 252, 255, 0.74);
  --gc-faint: rgba(234, 252, 255, 0.56);

  --gc-border: rgba(74, 163, 255, 0.22);
  --gc-border-2: rgba(122, 51, 255, 0.22);
  --gc-shadow: rgba(74, 163, 255, 0.14);
  --gc-shadow-2: rgba(122, 51, 255, 0.14);

  --gc-radius-btn: 0.65rem;
  --gc-radius-card: 0.0rem;
  --gc-card-pad: clamp(1.0rem, 2vw, 1.4rem);

  --gc-title-font: "Orbitron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --gc-body-font: "Rajdhani", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Bootstrap tokens */
  --bs-body-bg: var(--gc-ink);
  --bs-body-color: var(--gc-text);
  --bs-primary: var(--gc-violet);
  --bs-secondary: var(--gc-blue);
  --bs-info: var(--gc-cyan);
  --bs-danger: var(--gc-magenta);

  --bs-border-color: rgba(234, 252, 255, 0.12);
  --bs-link-color: var(--gc-cyan);
  --bs-link-hover-color: var(--gc-magenta);
}

*{ box-sizing: border-box; }
html{ 
  scroll-behavior: smooth; 
}
body{
  font-family: var(--gc-body-font);
  letter-spacing: 0.2px;
  background:
    radial-gradient(1400px 980px at 18% 14%, rgba(122, 51, 255, 0.78) 0%, rgba(122, 51, 255, 0.16) 58%, rgba(5, 2, 20, 0) 76%),
    radial-gradient(1400px 980px at 84% 18%, rgba(74, 163, 255, 0.72) 0%, rgba(74, 163, 255, 0.14) 58%, rgba(5, 2, 20, 0) 76%),
    radial-gradient(900px 760px at 62% 92%, rgba(0, 242, 255, 0.26) 0%, rgba(0, 242, 255, 0.06) 55%, rgba(5, 2, 20, 0) 74%),
    radial-gradient(900px 760px at 34% 82%, rgba(255, 47, 214, 0.16) 0%, rgba(255, 47, 214, 0.04) 58%, rgba(5, 2, 20, 0) 76%),
    linear-gradient(135deg, #040014 0%, #07002a 40%, #020017 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.gc-body::after{
  content:"";
  position: fixed;
  inset: -20%;
  z-index: -6;
  background:
    conic-gradient(from 210deg at 50% 50%,
      rgba(122, 51, 255, 0.28),
      rgba(74, 163, 255, 0.24),
      rgba(0, 242, 255, 0.14),
      rgba(255, 47, 214, 0.16),
      rgba(122, 51, 255, 0.28)
    );
  filter: blur(54px) saturate(1.35);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: gc-aurora 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes gc-aurora{
  0%{ transform: translate3d(-3%, -2%, 0) rotate(-4deg) scale(1.05); }
  50%{ transform: translate3d(2%, 1%, 0) rotate(2deg) scale(1.08); }
  100%{ transform: translate3d(4%, 3%, 0) rotate(6deg) scale(1.06); }
}

.gc-body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(234, 252, 255, 0.04) 0px,
      rgba(234, 252, 255, 0.04) 1px,
      transparent 1px,
      transparent 68px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(234, 252, 255, 0.03) 0px,
      rgba(234, 252, 255, 0.03) 1px,
      transparent 1px,
      transparent 68px
    );
  opacity: 0.18;
  pointer-events: none;
}

/* Reset list styling (no bullets / numbers / indentation) */
.unstyled-list,
.unstyled-list ul,
.unstyled-list ol{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.unstyled-list li{
  list-style: none;
  margin: 0;
  padding: 0;
}


.gc-noise{
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a{ text-decoration: none; }
.gc-link{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gc-cyan);
  margin-top: 0.75rem;
}
.gc-link:hover{ color: var(--gc-magenta); }

.gc-main{ 
  padding-top: 5.1rem; /* navbar offset */
} 



/* =========================================================
   Hero (must fit initial view, no truncation)
   ========================================================= */

.gc-section.gc-hero{
  padding: clamp(1.1rem, 2.0vw, 1.6rem) 0 clamp(1.3rem, 2.2vw, 1.9rem) 0;
  min-height: calc(100vh - 5.1rem); /* matches .gc-main offset on desktop */
  display: flex;
  align-items: stretch;
}

.gc-hero #heroContainer{
  flex: 1;
  display: flex;
  align-items: stretch;
}

.gc-hero #heroFrame{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background: rgba(0, 0, 0, 0.38); */
}

.gc-hero #heroRow{
  flex: 1;
}


#gc-hero-cycle{
  min-height: 150px;
}

/* Keep the right-side art compact so the full hero stays above the fold */
.gc-hero-banner{
  height: clamp(160px, 22vh, 260px);
  width: 100%;
  max-width: 560px;
  object-fit: contain;
}

.gc-hero-art{
  min-height: clamp(320px, 44vh, 420px);
}

/* Decorations must sit BEHIND text/logos */
.gc-glow-orb{ z-index: 0; }
.gc-decos{ z-index: -10; }
.gc-deco{ opacity: 0.62; }
#heroArtCard{ position: relative; z-index: 3; }


#heroImg {
  width: 100%;
  height: auto;
}


/* =========================================================
   Typography
   ========================================================= */
.gc-kicker{
  display:flex;
  align-items:center;
  gap: .6rem;
  color: var(--gc-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.gc-star{
  color: var(--gc-cyan);
  font-size: 1.2rem;
  line-height: 1;
}

.gc-hero-title{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  line-height: 1.04;
  font-size: clamp(2.05rem, 4.8vw, 3.6rem);
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
}

.gc-h1{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(1.6rem, 2vw, 3.6rem);
  margin: 0.35rem 0 0.9rem 0;
}

.gc-h2{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  margin: 0.35rem 0 0.9rem 0;
}

.gc-h3{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.18;
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
  margin: 0.35rem 0 0.7rem 0;
}

.gc-hero-subtitle,
.gc-text{
  color: var(--gc-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.gc-strong{ color: var(--gc-text); font-weight: 600; }

.gc-accent{
  color: var(--gc-blue);
  text-shadow: 0 0 18px rgba(74, 163, 255, 0.22);
}


.gc-section-title{
  color: rgba(234, 252, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.gc-fine{
  color: var(--gc-faint);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.gc-note{
  border: 1px solid rgba(234, 252, 255, 0.15);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.9rem 1rem;
  color: rgba(234, 252, 255, 0.8);
}

/* Glitch-ish neon title */
.gc-glitch{
  position: relative;
  text-shadow:
    0 0 22px rgba(0, 242, 255, 0.18),
    0 0 26px rgba(122, 51, 255, 0.12);
}
.gc-glitch::after,
.gc-glitch::before{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.0; /* activated by JS */
  pointer-events: none;
}

/* =========================================================
   Sections / Layout
   ========================================================= */
.gc-section{
  padding: clamp(3.3rem, 6.5vw, 5.8rem) 0;
}

.gc-section-tight{
  padding: clamp(2.6rem, 5vw, 4.6rem) 0;
}

.gc-section-header{
  margin-bottom: 1.6rem;
  max-width: 60rem;
}

.gc-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.55), rgba(122, 51, 255, 0.55), transparent);
  opacity: 0.65;
}

/* =========================================================
   Navbar
   ========================================================= */
.gc-navbar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(234, 252, 255, 0.08);
  backdrop-filter: blur(10px);
}

.gc-navbar.scrolled{
  background: rgba(0, 0, 0, 0.78);
  border-bottom-color: rgba(0, 242, 255, 0.16);
}

.gc-logo{
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(0, 242, 255, 0.18));
}
.gc-logo-footer{ height: 34px; }

.gc-brand-name{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
}
.gc-brand-sub{
  color: var(--gc-muted);
  font-style: italic;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  margin-top: -0.1rem;
}

.gc-nav-link{
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  padding: 0.6rem 0.85rem !important;
  color: rgba(234, 252, 255, 0.82) !important;
}
.gc-nav-link:hover{
  color: var(--gc-text) !important;
}
.gc-nav-link::after{
  content:"";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gc-cyan), var(--gc-magenta));
  transition: transform .2s ease;
}
.gc-nav-link:hover::after{ transform: scaleX(1); }

/* =========================================================
   Frame (neon corners)
   ========================================================= */
.gc-frame{
  position: relative;
  padding: clamp(1.25rem, 2.6vw, 2.0rem);
  border: 1px solid rgba(234, 252, 255, 0.11);
  background: rgba(0, 0, 0, 0.35);
}
.gc-frame::before,
.gc-frame::after{
  content:"";
  position:absolute;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(0, 242, 255, 0.55);
  pointer-events: none;
}
.gc-frame::before{
  left: -2px; top: -2px;
  border-right: none;
  border-bottom: none;
}
.gc-frame::after{
  right: -2px; bottom: -2px;
  border-left: none;
  border-top: none;
  border-color: rgba(122, 51, 255, 0.65);
}

/* =========================================================
   Cards
   ========================================================= */
.gc-card{
  border-radius: var(--gc-radius-card);
  padding: var(--gc-card-pad);
  background:
    radial-gradient(820px 260px at 10% 0%, rgba(74, 163, 255, 0.10) 0%, rgba(74, 163, 255, 0.00) 58%),
    radial-gradient(820px 260px at 90% 0%, rgba(122, 51, 255, 0.10) 0%, rgba(122, 51, 255, 0.00) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.94) 100%);
  border: 1px solid rgba(234, 252, 255, 0.10);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}


.gc-card-lg{ padding: clamp(1.2rem, 2.4vw, 1.8rem); }
.gc-card-mini{
  padding: 1rem 1rem;
  min-height: 96px;
}
.gc-card-mini-title{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}
.gc-card-mini-text{
  color: var(--gc-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.gc-card-hero{
  padding: clamp(1.1rem, 2.2vw, 1.55rem);
}

.gc-card-kicker{
  display:flex;
  align-items:center;
  gap: .55rem;
  color: rgba(234, 252, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}
.gc-dot{
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background: var(--gc-cyan);
  box-shadow: 0 0 14px rgba(0, 242, 255, 0.25);
}
.gc-pill{
  border: 1px solid rgba(234, 252, 255, 0.14);
  padding: 0.35rem 0.6rem;
  color: rgba(234, 252, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
}

.gc-card-footer{
  display:flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.gc-card-feature{
  /* min-height: 230px; */
  display:flex;
  flex-direction: column;
  gap: .55rem;
}
.gc-card-feature-icon{
  font-size: 1.5rem;
  line-height: 1;
  width: 2.8rem;
  height: 2.8rem;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(234, 252, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
}
.gc-card-feature-title{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 1.02rem;
}
.gc-card-feature-text{
  color: var(--gc-muted);
  font-size: 1.05rem;
  line-height: 1.45;
}
.gc-card-feature-slogan{
  margin-top: auto;
  color: rgba(234, 252, 255, 0.88);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* Mood variants (border + glow) */
.mood-cyan{ border-color: rgba(0, 242, 255, 0.22); box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(0, 242, 255, 0.08); }
.mood-purple{ border-color: rgba(122, 51, 255, 0.24); box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(122, 51, 255, 0.08); }
.mood-magenta{ border-color: rgba(255, 47, 214, 0.22); box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(255, 47, 214, 0.08); }

.mood-cyan-2{ border-color: rgba(0, 242, 255, 0.18); }
.mood-purple-2{ border-color: rgba(122, 51, 255, 0.18); }
.mood-magenta-2{ border-color: rgba(255, 47, 214, 0.18); }

.gc-img{
  max-width: 100%;
  height: auto;
  display: block;
}
.gc-img-framed{
  border: 1px solid rgba(234, 252, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
}
.gc-img-sm{
  max-width: 20%;
}
.gc-img-md{
  max-width: 40%;
}
.gc-img-lg{
  max-width: 100%;
}
/* =========================================================
   Hero Art + Decorations
   ========================================================= */
#heroImgWrapper{
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: block;
  text-align: center;
  top:0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100vh;
  /* Alternative to heroImg  */
  margin-top: 50px;
  background-image: url("images/hero-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
}
#heroImg{
  display: none;
  padding: 0;
  margin: 0;
  height: 100%;
  width: auto;
  position: relative;
  opacity: 0.2;
}
#hero{
  /* background-image: url("images/hero-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  width: 100%;
}

.gc-hero-art{
  position: relative;
  min-height: clamp(320px, 44vh, 420px);
  display: grid;
  place-items: center;
}

.gc-glow-orb{
  position:absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.35), rgba(0, 242, 255, 0.02) 60%, transparent 72%),
    radial-gradient(circle at 70% 55%, rgba(122, 51, 255, 0.34), rgba(122, 51, 255, 0.02) 60%, transparent 72%),
    radial-gradient(circle at 45% 80%, rgba(255, 47, 214, 0.18), rgba(255, 47, 214, 0.02) 58%, transparent 70%);
  filter: blur(100px);
  opacity: 0.95;
}

.gc-hero-banner{
  height: clamp(160px, 22vh, 260px);
  width: 100%;
  max-width: 560px;
  display:block;
  margin: 1.0rem auto 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(0, 242, 255, 0.10));
}

.gc-hero-art-body{
  padding: 0.5rem 0 0.9rem 0;
}

.gc-hero-art-footer{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(234, 252, 255, 0.10);
  padding-top: 0.8rem;
}
.gc-hero-art-number{
  font-family: var(--gc-title-font);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gc-cyan);
}
.gc-hero-art-label{
  color: rgba(234, 252, 255, 0.78);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* CSS 3D-ish decos */
.gc-decos{ position:absolute; inset: 0; pointer-events:none; }
.gc-deco{ position:absolute; opacity: 0.95; filter: drop-shadow(0 0 18px rgba(0,0,0,0.45)); }

.gc-deco-cube{
  width: 84px; height: 84px;
  /* right: 8%;
  top: 14%; */
  left: 80%;
  bottom: 7%;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.95), rgba(122, 51, 255, 0.95));
  transform: rotate(18deg) skew(-10deg);
  outline: 1px solid rgba(234, 252, 255, 0.18);
  box-shadow: 0 0 28px rgba(0, 242, 255, 0.14);
}
.gc-deco-donut{
  width: 96px; height: 96px;
  /* left: 6%;
  top: 12%; */
  left: 85%;
  bottom: 14%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(234, 252, 255, 0.22), rgba(234, 252, 255, 0.02) 55%, transparent 60%),
              conic-gradient(from 120deg, rgba(0, 242, 255, 0.95), rgba(255, 47, 214, 0.95), rgba(122, 51, 255, 0.95), rgba(0, 242, 255, 0.95));
  -webkit-mask: radial-gradient(circle at center, transparent 42%, #000 43%);
          mask: radial-gradient(circle at center, transparent 42%, #000 43%);
  outline: 1px solid rgba(234, 252, 255, 0.16);
}
.gc-deco-cone{
  width: 0; height: 0;
  /* left: 32%;
  bottom: -4%; */
  left: 88%;
  bottom: 10%;
  border-left: 46px solid transparent;
  border-right: 46px solid transparent;
  border-bottom: 92px solid rgba(122, 51, 255, 0.92);
  filter: drop-shadow(0 0 20px rgba(122, 51, 255, 0.16));
}


/* =========================================================
   Chips / Strips / Bullets
   ========================================================= */
.gc-badges{
  display:flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.15rem;
}
.gc-chip{
  display:inline-flex;
  align-items:center;
  gap: .45rem;
  padding: .42rem .65rem;
  border: 1px solid rgba(234, 252, 255, 0.14);
  background: rgba(0, 0, 0, 0.42);
  color: rgba(234, 252, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.gc-chip-grid{
  display:flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.gc-strip{
  display:flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.gc-strip-item{
  display:inline-flex;
  gap: .55rem;
  align-items:center;
  padding: .55rem .75rem;
  border: 1px solid rgba(234, 252, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(234, 252, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.gc-bullet-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 1rem;
}
.gc-bullet{
  display:flex;
  gap: .8rem;
  align-items:flex-start;
  padding: .8rem .9rem;
  border: 1px solid rgba(234, 252, 255, 0.10);
  background: rgba(0, 0, 0, 0.35);
}
.gc-bullet-icon{
  width: 2.6rem;
  height: 2.6rem;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(234, 252, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  font-size: 1.2rem;
}
.gc-bullet-title{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.95rem;
}
.gc-bullet-text{
  color: var(--gc-muted);
  line-height: 1.35;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-gc-primary{
  border-radius: var(--gc-radius-btn);
  border: 1px solid rgba(0, 242, 255, 0.26); /* cyan micro-shine */
  background: linear-gradient(90deg, rgba(74, 163, 255, 0.96), rgba(122, 51, 255, 0.96));
  /* color: #050214; */
  color: var(--gc-text) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--gc-title-font);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(74, 163, 255, 0.12), 0 12px 30px rgba(122, 51, 255, 0.10);
}
.btn-gc-primary:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-gc-outline{
  border-radius: var(--gc-radius-btn);
  border: 1px solid rgba(234, 252, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(234, 252, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--gc-title-font);
  font-weight: 800;
}
.btn-gc-outline:hover{
  border-color: rgba(74, 163, 255, 0.38);
  color: var(--gc-text);
  box-shadow: 0 0 0 1px rgba(122, 51, 255, 0.12);
}

/* =========================================================
   Persona pills / accordion
   ========================================================= */
.gc-pills{
  gap: .55rem;
  flex-wrap: wrap;
}
.gc-pills .nav-link{
  border-radius: 0.65rem;
  border: 1px solid rgba(234, 252, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(234, 252, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--gc-title-font);
  font-weight: 700;
  font-size: 0.75rem;
  padding: .55rem .75rem;
}
.gc-pills .nav-link.active{
  background: linear-gradient(90deg, rgba(74, 163, 255, 0.92), rgba(122, 51, 255, 0.92));
  color: #020225;
  border-color: rgba(0, 242, 255, 0.25);
}

.gc-avatar-card{
  border: 1px solid rgba(234, 252, 255, 0.12);
  background: rgba(0, 0, 0, 0.42);
  padding: 1.2rem 1.1rem;
}
.gc-avatar-icon{
  font-size: 1.6rem;
  color: var(--gc-cyan);
}
.gc-avatar-title{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-top: .55rem;
  font-size: 1.05rem;
}
.gc-avatar-text{
  color: var(--gc-muted);
  margin-top: .45rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.gc-avatar-slogan{
  margin-top: 1rem;
  color: rgba(234, 252, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

/* =========================================================
   Steps
   ========================================================= */
.gc-step-list{
  display: grid;
  gap: .75rem;
  margin-top: 1.2rem;
}
.gc-step{
  display:flex;
  gap: .9rem;
  align-items:flex-start;
  padding: .85rem .95rem;
  border: 1px solid rgba(234, 252, 255, 0.10);
  background: rgba(0, 0, 0, 0.32);
}
.gc-step-num{
  font-family: var(--gc-title-font);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gc-cyan);
}
.gc-step-title{
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.gc-step-text{
  color: var(--gc-muted);
  margin-top: .15rem;
}

/* =========================================================
   Accordion (FAQ)
   ========================================================= */
.gc-accordion .accordion-item{
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(234, 252, 255, 0.10);
}
.gc-accordion .accordion-button{
  background: transparent;
  color: rgba(234, 252, 255, 0.92);
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 0.2rem;
}
.gc-accordion .accordion-button:focus{ box-shadow: none; }
.gc-accordion .accordion-button:not(.collapsed){
  color: var(--gc-cyan);
}
.gc-accordion .accordion-body{
  color: var(--gc-muted);
  padding: 0 0.2rem 1rem 0.2rem;
}

/* =========================================================
   Scroll hint
   ========================================================= */
.gc-scroll-hint{
  display:flex;
  align-items:center;
  gap: .85rem;
  margin-top: 1.6rem;
  color: rgba(234, 252, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}
.gc-scroll-hint-line{
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(74, 163, 255, 0.75), rgba(122, 51, 255, 0.75));
  opacity: 0.75;
}

/* =========================================================
   Footer
   ========================================================= */
.gc-footer{
  padding: 3.0rem 0 2.6rem 0;
  border-top: 1px solid rgba(234, 252, 255, 0.08);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}
.gc-footer-tagline{
  color: rgba(234, 252, 255, 0.75);
  letter-spacing: 0.06em;
}
.gc-footer-bottom{
  display:flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  border-top: 1px solid rgba(234, 252, 255, 0.10);
  padding-top: 1.1rem;
}

/* =========================================================
   Motion hooks
   ========================================================= */
.reveal{
  will-change: transform, opacity;
}

/* =========================================================
   Responsive
   ========================================================= */
.hideWhenBurger {display: block}
.showWhenBurger {display: none}

#heroRightCol {
  display: block
}
/* #heroFrame{
  max-width: 1300px!important;
}   */
.page-width{
  max-width: 100vw !important;
  width: 100% !important;
  padding-left: 10%!important;
  padding-right: 10%!important;
}

/* 

@media (min-height: 500px){
  #heroRightCol {
    display: none
  }
} */

@media (max-width: 767px){
  .hideWhenBurger {display: none}
  .showWhenBurger {display: block}
  .gc-chip,.gc-strip-item  {font-size: 0.45rem!important;}
  .gc-footer-link,.nav-link {font-size: 0.55rem !important;}
  .page-width{
      padding-left: 2%!important;
      padding-right: 2%!important;
  }
}

@media (max-width: 991.98px){
  .gc-main{ padding-top: 5.6rem; }
  .gc-section.gc-hero{ min-height: calc(100vh - 5.6rem); }
  .gc-hero-art{ min-height: 360px; }
  .gc-glow-orb{ width: 340px; height: 340px; }
  .gc-frame::before, .gc-frame::after{ width: 54px; height: 54px; }
}

@media (max-width: 575.98px){
  .gc-navbar{ padding: .85rem 0; }
  .gc-logo{ height: 34px; }
  body,a,button{ font-size: 0.80rem!important; }
  .gc-hero-title{ font-size: clamp(1.85rem, 7.2vw, 2.55rem); }
  .gc-h1{ font-size: clamp(1.22rem, 5.2vw, 1.7rem); }
  .gc-h2{ font-size: clamp(1.22rem, 5.2vw, 1.7rem); }
  .gc-card-mini{ min-height: auto; }
  .gc-deco-cube{ right: 5%; top: 10%; width: 70px; height: 70px; }
  .gc-deco-donut{ left: 4%; top: 18%; width: 80px; height: 80px; }
  .gc-deco-cone{ left: 65%; top: 40%; border-left-width: 40px; border-right-width: 40px; border-bottom-width: 82px; }
  .gc-main{ 
    padding-top: 2rem !important; /* navbar offset */
  }
}
.gc-more-block { display: none; }
body.gc-more-on .gc-more-block { display: block; animation: gc-reveal 220ms ease-out both; }
body.gc-more-off-anim .gc-more-block { display: block; animation: gc-hide 180ms ease-in both; }
@keyframes gc-reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gc-hide { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(6px); } }
/* =========================================================
   Shiny Metal Sweep (buttons + opt-in text)
   - High-contrast specular band, neon edge
   - Triggered via JS by toggling .gc-shine-run (mouseenter/focus)
   ========================================================= */

.btn, .shiny{
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn > *, .shiny > *{
  position: relative;
  z-index: 2;
}

.shiny{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: .35rem;
  /* padding: .08rem .18rem; */
}

/* subtle metal "skin" highlight */
.btn::after, .shiny::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.03) 22%,
      rgba(0,0,0,0.00) 55%,
      rgba(0,242,255,0.06) 100%);
  transition: opacity .18s ease;
}

.btn:hover::after, .shiny:hover::after,
.btn:focus-visible::after, .shiny:focus-visible::after{
  opacity: .9;
}

/* specular band */
.btn::before, .shiny::before{
  content:"";
  position:absolute;
  top:-55%;
  left:-160%;
  width: 62%;
  height: 210%;
  z-index:1;
  pointer-events:none;
  opacity:0;
  transform: rotate(18deg);
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.00) 18%,
      rgba(255,255,255,0.95) 48%,
      rgba(255,255,255,0.25) 52%,
      rgba(0,242,255,0.35) 60%,
      rgba(255,47,214,0.22) 70%,
      rgba(255,255,255,0.00) 100%);
  filter: saturate(1.35) drop-shadow(0 0 10px rgba(0,242,255,0.30));
}

.btn.gc-shine-run::before, .shiny.gc-shine-run::before{
  opacity: 1;
  animation: gc-metal-sweep .42s linear both;
}

@keyframes gc-metal-sweep{
  0%   { left: -160%; opacity: 0; }
  10%  { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}


/* =========================================================
   Card border decorations (SVG-based cyber lines)
   Apply with .gc-card-lines
   ========================================================= */

.gc-card{
  position: relative;
}

.gc-card-lines{
  padding: 3rem !important; /*is like a p-8, these lines where too close to content, this adds proper separation*/
}

.gc-card-lines::before{
  content:"";
  position:absolute;
  inset: .55rem;
  border-radius: 0;
  pointer-events:none;
  opacity: .35;
  z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M18 76V18h58' fill='none' stroke='%2300f2ff' stroke-width='2.2'/%3E%3Cpath d='M18 104h86' fill='none' stroke='%237a33ff' stroke-width='2.2' opacity='.9'/%3E%3Cpath d='M18 132h48' fill='none' stroke='%234aa3ff' stroke-width='2' opacity='.65'/%3E%3Cpath d='M76 18h44' fill='none' stroke='%2300f2ff' stroke-width='2' opacity='.55'/%3E%3Cpath d='M18 18l22 0' fill='none' stroke='%23ff2fd6' stroke-width='2' opacity='.6'/%3E%3C/svg%3E") top left / 140px 140px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M202 76V18h-58' fill='none' stroke='%2300f2ff' stroke-width='2.2'/%3E%3Cpath d='M202 104h-86' fill='none' stroke='%237a33ff' stroke-width='2.2' opacity='.9'/%3E%3Cpath d='M202 132h-48' fill='none' stroke='%234aa3ff' stroke-width='2' opacity='.65'/%3E%3Cpath d='M144 18h-44' fill='none' stroke='%2300f2ff' stroke-width='2' opacity='.55'/%3E%3Cpath d='M202 18l-22 0' fill='none' stroke='%23ff2fd6' stroke-width='2' opacity='.6'/%3E%3C/svg%3E") top right / 140px 140px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M18 144v58h58' fill='none' stroke='%2300f2ff' stroke-width='2.2'/%3E%3Cpath d='M18 116h86' fill='none' stroke='%237a33ff' stroke-width='2.2' opacity='.85'/%3E%3Cpath d='M18 88h48' fill='none' stroke='%234aa3ff' stroke-width='2' opacity='.65'/%3E%3Cpath d='M76 202h44' fill='none' stroke='%2300f2ff' stroke-width='2' opacity='.55'/%3E%3Cpath d='M18 202l22 0' fill='none' stroke='%23ff2fd6' stroke-width='2' opacity='.6'/%3E%3C/svg%3E") bottom left / 140px 140px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M202 144v58h-58' fill='none' stroke='%2300f2ff' stroke-width='2.2'/%3E%3Cpath d='M202 116h-86' fill='none' stroke='%237a33ff' stroke-width='2.2' opacity='.85'/%3E%3Cpath d='M202 88h-48' fill='none' stroke='%234aa3ff' stroke-width='2' opacity='.65'/%3E%3Cpath d='M144 202h-44' fill='none' stroke='%2300f2ff' stroke-width='2' opacity='.55'/%3E%3Cpath d='M202 202l-22 0' fill='none' stroke='%23ff2fd6' stroke-width='2' opacity='.6'/%3E%3C/svg%3E") bottom right / 140px 140px no-repeat;
}

.gc-card-lines::after{
  content:"";
  position:absolute;
  inset: .35rem;
  border-radius: 0;
  pointer-events:none;
  z-index: 0;
  opacity: .15;
  border: 1px solid rgba(0,242,255,0.16);
  box-shadow:
    inset 0 0 0 1px rgba(122,51,255,0.10),
    inset 0 0 22px rgba(0,242,255,0.06);
}

/* Keep content above decoration layers */
.gc-card > *{
  position: relative;
  z-index: 2;
}


/* Footer links as cypherpunk links (not buttons) */
.gc-footer-link{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .15rem .1rem;
  text-decoration: none;
  color: rgba(235,245,255,0.86);
  font-family: var(--gc-title-font);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .60rem;
  border-bottom: 1px solid rgba(0,242,255,0.12);
}

.gc-footer-link i{
  font-size: 1rem;
  color: var(--gc-cyan);
  opacity: .95;
}

.gc-footer-link:hover{
  color: #ffffff;
  border-bottom-color: rgba(255,47,214,0.24);
}


/* =========================================================
   Extra background decorations (behind everything)
   ========================================================= */
.gc-decor-layer{
  position: fixed;
  inset: 0;
  z-index: -5; /* behind particles */
  pointer-events: none;
}

.gc-decor-orb{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(52px) saturate(1.55);
  opacity: .28;
  mix-blend-mode: screen;
}

.gc-decor-orb-1{
  left: -140px;
  top: 22%;
  background: radial-gradient(circle at 30% 30%, rgba(122,51,255,0.95), rgba(74,163,255,0.18) 55%, rgba(0,0,0,0) 70%);
  animation: gc-orb-float-1 10s ease-in-out infinite alternate;
}

.gc-decor-orb-2{
  right: -180px;
  top: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(74,163,255,0.92), rgba(255,47,214,0.16) 52%, rgba(0,0,0,0) 70%);
  animation: gc-orb-float-2 12s ease-in-out infinite alternate;
}

@keyframes gc-orb-float-1{
  from{ transform: translate3d(0, -8px, 0) scale(1); }
  to{ transform: translate3d(24px, 18px, 0) scale(1.06); }
}

@keyframes gc-orb-float-2{
  from{ transform: translate3d(0, 8px, 0) scale(1.03); }
  to{ transform: translate3d(-22px, -14px, 0) scale(1.10); }
}

.gc-decor-scanline{
  position: absolute;
  height: 2px;
  width: min(820px, 72vw);
  opacity: .35;
  filter: blur(.2px);
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,242,255,0.42), rgba(122,51,255,0.28), rgba(255,47,214,0.12), rgba(0,0,0,0));
}

.gc-decor-scanline-1{ left: 8%; top: 18%; transform: skewX(-18deg); }
.gc-decor-scanline-2{ right: 6%; top: 64%; transform: skewX(14deg); }


/* Keep hero floating shapes behind text inside decorated cards */
.gc-card-lines .gc-decos{
  z-index: 1 !important;
}


/* =========================================================
   Floating "Go to top" button
   ========================================================= */
.gc-to-top{
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .55rem;
  z-index: 50;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(0,242,255,0.18),
    0 12px 30px rgba(0,0,0,0.55);
}

#gcToTop { bottom: 72px; }

.gc-to-top.show{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}


/* Toggle short/full button (stacked with gcToTop) */
.gc-toggle-more {
  bottom: 16px;
}
.gc-toggle-more::after {
  /* content: attr(data-state-label); */
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  /*border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.88);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;*/
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}
.gc-toggle-more.show::after,
.gc-toggle-more:hover::after {
  opacity: 1;
}


/* Auto-slider: horizontal scroll + snap */
.gc-autoslider {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .gc-autoslider {
    padding-left: 0;
    padding-right: 0;
  }
}
.gc-autoslider::-webkit-scrollbar { display: none; }
.gc-autoslider > * {
  scroll-snap-align: start;
}

/* Slider UI */
.gc-slider-ui {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.gc-slider-dots {
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}
.gc-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  padding: 0;
}
.gc-slider-dot.active {
  background: #00f2ff59;
  border-color: #00f2ff8c;
  box-shadow: 0 0 12px #00f2ff59;
}


/* Image corner tint (palette-matching, subtle) */
.gc-imgfx {
  position: relative;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 62%,
    rgba(0,0,0,0.55) 82%,
    rgba(0,0,0,0) 100%
  );
          mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 62%,
    rgba(0,0,0,0.55) 82%,
    rgba(0,0,0,0) 100%
  );

  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
.gc-imgfx::before,
.gc-imgfx::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
}
.gc-imgfx::before {
  background: radial-gradient(closest-side at 12% 14%, #00f2ff8c, rgba(0,0,0,0) 500%);
  mix-blend-mode: screen;
}
.gc-imgfx::after {
  background: radial-gradient(closest-side at 88% 86%, #8c52ff8c, rgba(0,0,0,0) 500%);
  mix-blend-mode: screen;
}

/* Card image sizing normalization */
.gc-card .gc-img-framed {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 575.98px) {
  .gc-card .gc-img-framed {
    max-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .gc-card .gc-imgfx {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}
