/* === BASE STYLES === */:root {
  --color-1: #1a0033;
  --color-2: #2d0052;
  --color-3: #0a0019;
  --color-4: #ff2d92;
  --color-5: #ff6ec7;
  --color-6: #ffd700;
  --color-7: #ffffff;
  --color-8: rgba(255, 255, 255, 0.08);
  --color-9: rgba(255, 255, 255, 0.7);
  --color-10: #00f0ff;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
  --radius-1: 8px;
  --radius-2: 16px;
  --radius-3: 24px;
  --shadow-1: 0 10px 40px rgba(255, 45, 146, 0.3);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.5);
  --gradient-1: linear-gradient(135deg, #ff2d92 0%, #ff6ec7 50%, #ffd700 100%);
  --gradient-2: linear-gradient(135deg, #1a0033 0%, #2d0052 100%);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-7);
  background: var(--color-3);
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 45, 146, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p {
  margin: 0 0 var(--space-3);
  color: var(--color-9);
  font-size: 1.05rem;
}

a {
  color: var(--color-5);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-6);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-7);
  background: var(--gradient-1);
  border: none;
  border-radius: 50px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 45, 146, 0.5);
  color: var(--color-7);
}

.cta-button:hover::before {
  left: 100%;
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-2);
  margin: var(--space-4) 0;
  background: var(--color-8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 45, 146, 0.2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-7);
}

.comparison-table thead {
  background: var(--gradient-1);
}

.comparison-table th {
  padding: var(--space-3);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-7);
}

.comparison-table td {
  padding: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-9);
}

.comparison-table tbody tr:hover {
  background: rgba(255, 45, 146, 0.05);
}

.comparison-table tbody tr td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-6);
}

figure.content-image {
  margin: var(--space-4) 0;
  border-radius: var(--radius-2);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(255, 45, 146, 0.2);
}

figure.content-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

figure.content-image.portrait {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

figure.content-image.portrait img {
  max-height: 600px;
}

.highlight-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
}

.highlight-list li,
ul.feature-list li {
  padding: var(--space-2) 0 var(--space-2) var(--space-4);
  position: relative;
  color: var(--color-9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-list li::before,
ul.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--gradient-1);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-4);
}

/* === LAYOUT STYLES === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 0, 25, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 146, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  gap: var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--space-4);
}

.main-nav a {
  font-weight: 600;
  color: var(--color-7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a:hover {
  color: var(--color-5);
}

.site-header .cta-button {
  padding: 0.7rem 1.6rem;
  font-size: 0.85rem;
  max-width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.site-footer {
  background: linear-gradient(180deg, var(--color-3) 0%, #000 100%);
  border-top: 1px solid rgba(255, 45, 146, 0.2);
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--color-9);
  font-size: 0.9rem;
}

.copyright {
  color: var(--color-9);
  font-size: 0.85rem;
  margin: 0;
}

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

  .site-header .cta-button {
    order: 3;
  }

  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.active {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: var(--space-3) 0;
    gap: var(--space-2);
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .site-header .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

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

  .site-header .cta-button {
    order: 3;
  }

  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.active {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: var(--space-3) 0;
    gap: var(--space-2);
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .site-header .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 500px) {
  main > section {
    padding: var(--space-5) 0;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-row .cta-button {
    width: 100%;
    text-align: center;
  }
  .countdown-item {
    min-width: 50px;
  }
  .countdown-num {
    font-size: 1.2rem;
  }
}