:root {
  --bg: #0b1021;
  --bg-img: none;
  --card: #111832;
  --text: #f3f4ff;
  --heading-text: #f3f4ff;
  --muted: #cbd5f5;
  --accent: #f5a524;
  --accent-2: #5be0e5;
  --button-bg: linear-gradient(135deg, var(--accent), #ffb347);
  --button-text: #0b1021;
  --button-glow: rgba(245, 165, 36, 0.35);
  --font-body: 'Space Grotesk';
  --font-heading: 'Space Grotesk';
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(91, 224, 229, 0.12), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(245, 165, 36, 0.12), transparent 30%),
              linear-gradient(145deg, rgba(6, 11, 26, 0.9), rgba(11, 16, 33, 0.92)),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body, p, span, li, a, input, textarea, select, button {
  font-family: var(--font-body), system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading), system-ui, -apple-system, sans-serif;
  color: var(--heading-text);
}

body::before {
  content: '';
  position: fixed;
  inset: -20px;
  background: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.38;
  filter: saturate(0.9) blur(2px);
  z-index: -2;
  pointer-events: none;
}

.site {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
  position: relative;
  padding: 48px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.halo {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 224, 229, 0.18), transparent 45%);
  filter: blur(40px);
  right: -120px;
  top: -120px;
  opacity: 0.8;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
}

.glass img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin: 0;
}

.subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 12px 0 20px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  background: var(--button-bg);
  color: var(--button-text);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 35px var(--button-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 45px var(--button-glow);
}

.ghost {
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.ghost:hover { background: rgba(255, 255, 255, 0.06); }

.panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.panel__actions {
  margin: 12px 0 4px;
}

.panel__media {
  margin-bottom: 12px;
}

.panel__media img {
  width: 100%;
  border-radius: 14px;
  display: block;
  max-height: 320px;
  object-fit: cover;
}

.panel__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg);
  color: var(--button-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 35px var(--button-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.panel__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 45px var(--button-glow);
}

.bio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 48px 0;
}

.panel__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.panel__header h2 {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.line {
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 224, 229, 0.5), transparent);
  flex: 1;
}

p { line-height: 1.7; color: var(--muted); }

.list {
  padding-left: 18px;
  margin: 12px 0;
  color: var(--text);
}

.gallery { margin: 32px 0 52px; }

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 14px 16px 18px;
}

.card__title { margin: 0 0 6px; font-weight: 600; }

.card__caption { margin: 0; color: var(--muted); font-size: 14px; }

.connect {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.tos {
  margin-top: 28px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 8px;
}

.tag {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.15s ease;
}

.tag:hover { transform: translateY(-1px); }

.footer {
  margin-top: 12px;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.queue {
  display: grid;
  gap: 12px;
}

.queue-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.queue-item strong {
  font-weight: 600;
}

.queue-header {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .queue-item {
    grid-template-columns: 1fr;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  z-index: 50;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox__content {
  position: relative;
  background: rgba(11, 16, 33, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  max-width: 900px;
  width: calc(100% - 32px);
  padding: 16px;
  box-shadow: 0 30px 120px rgba(0,0,0,0.6);
}

.lightbox__content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #000;
}

.lightbox__meta {
  margin-top: 10px;
}

.lightbox__title {
  margin: 0 0 4px;
  font-weight: 700;
}

.lightbox__caption {
  margin: 0;
  color: var(--muted);
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  border-radius: 12px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 720px) {
  .hero { padding: 32px 20px; }
  .glass img { max-width: 100%; }
}
