:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #4c1d95;
  --yellow: #ffff00;
  --pink: #ec1e8f;
  --bg: #0b0614;
  --panel-border: rgba(255, 255, 255, 0.1);
  --panel-border-hover: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.14) 1px, transparent 1px);
  background-size: 46px 46px;
  background-position: center top;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(ellipse 900px 600px at 85% 30%, rgba(236, 30, 143, 0.18), transparent 60%),
    radial-gradient(ellipse 900px 600px at 50% 100%, rgba(124, 58, 237, 0.25), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.tusker,
h1,
h2,
.badge-v1 span {
  font-family: 'Anton', 'Poppins', sans-serif;
  font-style: italic;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

nav .logo img {
  height: 30px;
}

nav .back {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--panel-border);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--glass);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

nav .back:hover {
  color: #fff;
  border-color: var(--panel-border-hover);
  background: var(--glass-strong);
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid var(--panel-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
}

h1 .hl {
  color: var(--yellow);
}

.hero p.sub {
  max-width: 620px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #9333ea);
  color: #fff;
}

.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--panel-border);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--panel-border-hover);
  background: var(--glass-strong);
}

/* GLASS PANEL */
.panel {
  position: relative;
  z-index: 1;
  background: var(--glass-strong);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  padding: 14px;
  margin: 60px 0;
}

.panel-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.panel-label i {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.panel img,
.panel video {
  width: 100%;
  border-radius: 14px;
  display: block;
  border: 1px solid var(--panel-border);
}

/* SECTION HEADINGS */
.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
}

.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  border-color: var(--panel-border-hover);
  background: var(--glass-strong);
}

.feature-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--purple-light);
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* MACRO SHOWCASE */
.macro-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 70px 0;
}

.macro-showcase img {
  border-radius: 18px;
  border: 1px solid var(--panel-border);
}

@media (max-width: 860px) {
  .macro-showcase {
    grid-template-columns: 1fr;
  }
}

/* CLOSING CTA */
.closing {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 24px 40px;
}

.badge-v1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #a21caf);
  transform: rotate(-8deg);
  margin-bottom: 26px;
}

.badge-v1 span {
  font-size: 1.4rem;
  color: #fff;
}

.closing h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 30px;
}

.tags-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-light);
}

.tags-row span:not(:last-child)::after {
  content: '•';
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.25);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 24px 50px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}
