:root {
  --bg: #060608;
  --bg2: #0b0c10;
  --card: rgba(255, 255, 255, 0.015);
  --line: rgba(255,255,255,0.04);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --accent: #a38dff;
  --accent-soft: rgba(163,141,255,0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #151420 0%, #060608 40%, #060608 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* super lichte hollow-watermark */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/thumb-2.jpg.jpg") no-repeat center/45%;
  opacity: 0.018;
  pointer-events: none;
  z-index: -4;
  filter: grayscale(1);
}

#hollow-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: radial-gradient(circle at top, rgba(126,109,239,0.02), rgba(0,0,0,1));
}

#hollow-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: screen;
  backdrop-filter: blur(6px);
  translate: -50% -50%;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,6,8,0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.6rem;
  font-size: 0.9rem;
}
.nav-links a:hover {
  color: #fff;
}

.btn-primary {
  background: linear-gradient(120deg, #a38dff 0%, #3e3565 100%);
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
}
.small {
  font-size: 0.75rem;
}

.hero {
  max-width: 1100px;
  margin: 2.4rem auto 1rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: .6rem;
}

.hero h1 {
  font-size: clamp(3.4rem, 5vw, 4rem);
  line-height: .95;
  margin: 0 0 .8rem;
  letter-spacing: -.04em;
}

.hero-text {
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  margin: 1.2rem 0 .7rem;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-meta .label {
  display: block;
  text-transform: uppercase;
  font-size: .6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: .14em;
}
.hero-meta .value {
  font-size: .8rem;
}

.hero-media {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: radial-gradient(circle at top, rgba(163,141,255,0.4), rgba(6,6,8,0.1));
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  transition: opacity 0.4s ease;
}
.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(6,6,8,0) 0%, rgba(6,6,8,0.8) 90%);
  padding: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,0.8);
}

.section {
  padding: 3.9rem 1rem 3.9rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: flex-start;
}
.section h2 {
  font-size: 2.1rem;
  margin-bottom: .6rem;
}
.section p {
  color: var(--muted);
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  filter: grayscale(0.2) brightness(0.85);
  border: 1px solid rgba(255,255,255,0.02);
  background: rgba(255,255,255,0.03);
  transition: 0.35s ease;
}
.gallery-grid img:hover {
  filter: brightness(1) contrast(1.03);
  transform: translateY(-3px);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.about-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 1rem;
}
.about-card h3 {
  margin-top: 0;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.vision-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 1rem;
  min-height: 140px;
}

.prominent {
  background: radial-gradient(circle at top, rgba(163,141,255,0.04), rgba(6,6,8,1));
  border-block: 1px solid rgba(255,255,255,0.015);
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.marquee-container {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
  margin-top: 1.6rem;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  width: max-content;
  animation: slide-left 35s linear infinite;
}
.marquee-item {
  display: flex;
  gap: .7rem;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.015);
  border-radius: 14px;
  padding: .6rem .8rem;
  min-width: 280px;
  align-items: center;
}
.marquee-avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.04);
}
.marquee-body h4 {
  margin: 0;
  font-size: .78rem;
}
.marquee-body p {
  margin: 0;
  font-size: .7rem;
  color: rgba(255,255,255,0.5);
}

@keyframes slide-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-note {
  margin-top: .8rem;
  font-size: .7rem;
  color: rgba(255,255,255,0.4);
}

.faq details {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.017);
  border-radius: 14px;
  padding: .7rem 1rem;
  margin-bottom: .6rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
}
.faq p {
  margin-top: .4rem;
}

.footer {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  color: rgba(255,255,255,0.35);
  font-size: .7rem;
}

/* PFP generator */
.pfp-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
}

.pfp-control-group {
  margin: 1.2rem 0;
}

.pfp-control-group h3 {
  margin-bottom: .4rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
}

.pfp-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.pfp-bg-list {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.pfp-bg-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.02);
  cursor: pointer;
  outline: none;
  transition: transform .15s ease;
}
.pfp-bg-btn.active {
  border: 2px solid rgba(163,141,255,1);
}
.pfp-bg-btn:hover {
  transform: translateY(-2px);
}

.pfp-option {
  background: rgba(6,6,8,0.25);
  border: 1px solid rgba(163,141,255,0.35);
  border-radius: 10px;
  padding: .45rem .75rem;
  font-size: .7rem;
  cursor: pointer;
  color: #fff;
}
.pfp-option.active {
  background: rgba(163,141,255,0.16);
  border: 1px solid rgba(163,141,255,0.9);
}

.pfp-preview-card {
  background: radial-gradient(circle at top, rgba(163,141,255,0.07), rgba(6,6,8,0.25));
  border: 1px solid rgba(255,255,255,0.025);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#pfp-canvas {
  width: 100%;
  border-radius: 16px;
  background: #0b0c10;
}

.pfp-hint {
  margin-top: .6rem;
  font-size: .65rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 910px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pfp-wrapper {
    grid-template-columns: 1fr;
  }
}
