:root {
  --bg: #07070c;
  --bg-2: #0d0f17;
  --panel: rgba(17, 20, 30, 0.72);
  --panel-strong: rgba(18, 22, 34, 0.92);
  --text: #f5f7ff;
  --muted: #a6b0cb;
  --line: rgba(255, 255, 255, 0.09);

  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --cyan: #22d3ee;
  --cyan-soft: #7dd3fc;
  --gold: #f4c86a;

  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(34, 211, 238, 0.1), transparent 0 25%),
    radial-gradient(circle at 85% 12%, rgba(139, 92, 246, 0.18), transparent 0 28%),
    linear-gradient(180deg, #0b0c12 0%, #07070c 60%, #050509 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 86%);
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: var(--purple);
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  bottom: 40px;
  left: -80px;
}

.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(34, 211, 238, 0.1), transparent 0 25%),
    radial-gradient(circle at 85% 12%, rgba(139, 92, 246, 0.18), transparent 0 28%),
    linear-gradient(180deg, #0b0c12 0%, #07070c 60%, #050509 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  /* border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(10, 12, 20, 0.78);
    box-shadow: var(--shadow); */
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 0 35%),
    linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 12px;
  height: 14px;
  background: linear-gradient(180deg, #dacfff, #7c3aed);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-mark::before {
  left: 6px;
  transform: rotate(-14deg);
}

.brand-mark::after {
  right: 6px;
  transform: rotate(14deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 14px 28px rgba(88, 84, 209, 0.3);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.full-width {
  width: 100%;
}

.hero {
  padding: 64px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.feature-card,
.content-card,
.gallery-card,
.footer-inner {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 44px;
}

.eyebrow,
.section-tag,
.badge-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #d6ddff;
}

.hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #ffffff, #bfd0ff 46%, #7fe7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 58ch;
  /* color: var(--muted); */
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  padding: 18px;
}

.hero-image {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 12, 0.08), rgba(7, 7, 12, 0.58)),
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.12), transparent 0 26%),
    radial-gradient(circle at 80% 18%, rgba(139, 92, 246, 0.2), transparent 0 30%);
}

.hero-badge {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 10, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  max-width: 240px;
}

.hero-badge strong {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
}

.top-badge {
  top: 18px;
  left: 18px;
}

.bottom-badge {
  bottom: 18px;
  left: 18px;
}

.section {
  padding: 26px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-heading h2,
.content-card h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.section-heading p,
.content-card p,
.feature-card p,
.gallery-info p,
.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  transition: 0.25s ease;
}

.feature-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.34);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.feature-card h3,
.gallery-info h3,
.site-footer h3 {
  margin: 0;
  font-size: 1.15rem;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.content-card {
  padding: 28px;
}

.check-list,
.page-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-item,
.page-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.page-item {
  display: grid;
  gap: 4px;
}

.page-item strong {
  font-size: 1rem;
}

.page-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  transition: 0.25s ease;
}

.gallery-card img {
  height: 260px;
  object-fit: cover;
}

.gallery-info {
  padding: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
}

.contact-form span {
  color: #dce3ff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8e97b3;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 30px 0 70px;
}

.footer-inner {
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

@media (max-width: 1040px) {

  .hero-grid,
  .feature-grid,
  .split-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-links {
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero-copy,
  .content-card,
  .feature-card,
  .footer-inner {
    padding: 22px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .gallery-card img {
    height: 220px;
  }
}

.logo {
  height: 50px;
  width: auto;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* text-align:center; */
  max-width: 900px;
  padding: 40px;
  color: white;
}

.hero-content h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-content span {
  color: #7dd3fc;
}

.hero-text {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* cinematic dark overlay */

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .4),
      rgba(0, 0, 0, .6));
  z-index: 2;
}

/* animated glow layer */

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, .15), transparent 60%);
  animation: glowMove 12s linear infinite;
  z-index: 2;
}

@keyframes glowMove {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  /* text-align:center; */
  max-width: 900px;
  padding: 40px;
  color: white;
}

.hero-content h1 {
  font-size: 72px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content span {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}


.den-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
}

.den-left h2 {
  margin-top: 12px;
}

.den-text {
  margin: 18px 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.discord-actions {
  margin-top: 22px;
}

.den-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-widget {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

@media (max-width: 1040px) {
  .den-section {
    grid-template-columns: 1fr;
  }
}