/* === BASE STYLES === */:root {
  --c1: #1a0a2e;
  --c2: #6d28d9;
  --c3: #ec4899;
  --c4: #f472b6;
  --bg: #0f0720;
  --bg2: #150c2e;
  --bg3: #1e1040;
  --fg: #f1e8ff;
  --fg2: #c4b5fd;
  --fg3: #9c87c0;
  --acc: #ec4899;
  --acc2: #f472b6;
  --gold: #fbbf24;
  --sp1: 0.5rem;
  --sp2: 1rem;
  --sp3: 1.5rem;
  --sp4: 2rem;
  --sp5: 3rem;
  --sp6: 5rem;
  --rad: 12px;
  --rad2: 20px;
  --rad3: 6px;
  --shadow1: 0 4px 24px rgba(109,40,217,0.25);
  --shadow2: 0 8px 48px rgba(236,72,153,0.2);
  --shadow3: 0 2px 12px rgba(0,0,0,0.4);
  --glow1: 0 0 24px rgba(236,72,153,0.5), 0 0 48px rgba(109,40,217,0.3);
  --glow2: 0 0 16px rgba(109,40,217,0.6);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}

h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.2;
  color: var(--fg);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: var(--sp3);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: var(--sp2);
}

p {
  color: var(--fg2);
  margin-bottom: var(--sp2);
  font-size: 0.97rem;
}

p:last-child { margin-bottom: 0; }

a { color: var(--acc2); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--fg); }

ul { padding-left: 0; list-style: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: var(--rad);
  border: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.75rem 1.75rem;
}

.btnPrimary {
  background: linear-gradient(135deg, var(--c3) 0%, var(--c2) 100%);
  color: #fff;
  box-shadow: var(--glow1);
}

.btnPrimary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(236,72,153,0.7), 0 0 80px rgba(109,40,217,0.4);
  color: #fff;
}

.btnSecondary {
  background: transparent;
  border: 2px solid var(--c3);
  color: var(--c3);
}

.btnSecondary:hover {
  background: var(--c3);
  color: #fff;
  transform: translateY(-2px);
}

.sectionTag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(109,40,217,0.15));
  border: 1px solid rgba(236,72,153,0.3);
  color: var(--acc2);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: var(--sp2);
}

.glowDivider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c3), var(--c2));
  border-radius: 100px;
  margin-bottom: var(--sp3);
}

.cardBase {
  background: linear-gradient(145deg, rgba(30,16,64,0.9), rgba(21,12,46,0.95));
  border: 1px solid rgba(109,40,217,0.25);
  border-radius: var(--rad2);
  padding: var(--sp4);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.cardBase:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,0.4);
  box-shadow: var(--shadow2), var(--shadow1);
}

.checkList li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--fg2);
  font-size: 0.95rem;
}

.checkList li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--acc);
  font-weight: 700;
}

.featureList li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--fg2);
  font-size: 0.93rem;
}

.featureList li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--c4);
}

.highlightList li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--fg2);
  font-size: 0.95rem;
}

.highlightList li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--acc);
  font-size: 0.6rem;
  top: 0.35rem;
}

.table-responsive {
  border-radius: var(--rad);
  overflow-x: auto;
  border: 1px solid rgba(109,40,217,0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead th {
  background: linear-gradient(135deg, rgba(109,40,217,0.5), rgba(236,72,153,0.3));
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.1rem;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid rgba(109,40,217,0.12);
  transition: background 0.2s;
}

tbody tr:last-child { border-bottom: none; }

tbody tr:nth-child(odd) { background: rgba(21,12,46,0.6); }
tbody tr:nth-child(even) { background: rgba(15,7,32,0.5); }

tbody tr:hover { background: rgba(109,40,217,0.15); }

tbody td {
  padding: 0.85rem 1.1rem;
  color: var(--fg2);
}

tbody td:first-child { color: var(--fg); font-weight: 600; }

.content-image img,
figure.content-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--rad);
  display: block;
}

figure.content-image {
  margin: var(--sp3) 0;
  overflow: hidden;
}

/* === LAYOUT STYLES === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,5,25,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(109,40,217,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.headerInner {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  padding: 0.9rem var(--sp3);
  max-width: 1200px;
  margin-inline: auto;
}

.logo {
  flex-shrink: 0;
}

.logoText {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--acc2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(109,40,217,0.3);
  border-radius: var(--rad3);
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp2);
}

.main-nav .navList {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .navList li a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--fg2);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--rad3);
  transition: all 0.2s;
}

.main-nav .navList li a:hover {
  color: var(--fg);
  background: rgba(109,40,217,0.15);
}

.headerCta {
  flex-shrink: 0;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
}

.site-footer {
  background: linear-gradient(180deg, var(--bg2) 0%, #080312 100%);
  border-top: 1px solid rgba(109,40,217,0.15);
  padding: var(--sp5) 0 var(--sp3);
  margin-top: var(--sp6);
}

.footerInner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp3);
  text-align: center;
}

.footerNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem var(--sp3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerNav ul li a {
  color: var(--fg3);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footerNav ul li a:hover { color: var(--acc2); }

.footerDisclaimer {
  color: var(--fg3);
  font-size: 0.8rem;
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,5,25,0.98);
    border-bottom: 1px solid rgba(109,40,217,0.25);
    padding: var(--sp2);
    gap: var(--sp2);
    backdrop-filter: blur(20px);
  }

  .main-nav.open { display: flex; }

  .main-nav .navList {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .main-nav .navList li a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .headerCta {
    max-width: none;
    width: 100%;
    justify-content: center;
  }

  .headerInner {
    flex-wrap: wrap;
    position: relative;
  }

  .logo { order: 0; }
  .hamburger { order: 1; }
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .main-nav { display: flex !important; }
}

@media (max-width: 767px) {
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,5,25,0.98);
    border-bottom: 1px solid rgba(109,40,217,0.25);
    padding: var(--sp2);
    gap: var(--sp2);
    backdrop-filter: blur(20px);
  }

  .main-nav.open { display: flex; }

  .main-nav .navList {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .main-nav .navList li a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .headerCta {
    max-width: none;
    width: 100%;
    justify-content: center;
  }

  .headerInner {
    flex-wrap: wrap;
    position: relative;
  }

  .logo { order: 0; }
  .hamburger { order: 1; }
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .main-nav { display: flex !important; }
}