/* === BASE STYLES === */:root {
  --color-1: #0a0014;
  --color-2: #1a0628;
  --color-3: #ff2bd6;
  --color-4: #c8a3ff;
  --color-5: #6b21a8;
  --color-6: #ffd700;
  --color-7: #f5f0ff;
  --color-8: rgba(255, 43, 214, 0.15);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --radius-1: 12px;
  --radius-2: 20px;
  --radius-3: 32px;
  --font-1: 'Space Grotesk', sans-serif;
  --font-2: 'Syne', sans-serif;
  --shadow-1: 0 10px 40px rgba(255, 43, 214, 0.25);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html, body {
  background: var(--color-1);
  color: var(--color-7);
  font-family: var(--font-1);
  line-height: 1.6;
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: var(--space-3); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: rgba(245, 240, 255, 0.8); }

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

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 var(--space-3);
  width: 100%;
}

.cta-button, .btn-primary {
  background: linear-gradient(135deg, var(--color-3) 0%, var(--color-5) 100%);
  border: none;
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-1);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  padding: 14px 32px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover, .btn-primary:hover {
  box-shadow: 0 15px 50px rgba(255, 43, 214, 0.5);
  color: #fff;
  transform: translateY(-3px);
}

.cta-button::before {
  background: linear-gradient(135deg, var(--color-4) 0%, var(--color-3) 100%);
  content: '';
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  z-index: -1;
}

.cta-button:hover::before { opacity: 1; }

.content-image {
  border-radius: var(--radius-2);
  margin: var(--space-4) 0;
  overflow: hidden;
}

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

.content-image.portrait img {
  max-height: 500px;
  max-width: 380px;
  margin: 0 auto;
}

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

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

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

.logo-text {
  background: linear-gradient(135deg, var(--color-3), var(--color-4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-2);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.primary-nav a {
  color: var(--color-7);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.primary-nav a::after {
  background: var(--color-3);
  bottom: -6px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.3s;
  width: 0;
}

.primary-nav a:hover::after { width: 100%; }

.hamburger {
  background: transparent;
  border: 1px solid rgba(255, 43, 214, 0.4);
  border-radius: var(--radius-1);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.hamburger span {
  background: var(--color-3);
  height: 2px;
  margin: 0 auto;
  transition: 0.3s;
  width: 22px;
}

.site-footer {
  background: var(--color-2);
  border-top: 1px solid rgba(255, 43, 214, 0.2);
  margin-top: var(--space-6);
  padding: var(--space-5) 0;
}

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

.footer-nav a {
  color: rgba(245, 240, 255, 0.7);
}

.copyright {
  color: rgba(245, 240, 255, 0.5);
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .primary-nav {
    background: var(--color-2);
    border-top: 1px solid rgba(255, 43, 214, 0.2);
    display: none;
    left: 0;
    padding: var(--space-3);
    position: absolute;
    right: 0;
    top: 100%;
  }
  .primary-nav.active { display: block; }
  .primary-nav ul {
    flex-direction: column;
    gap: var(--space-2);
  }
  .header-inner .cta-button {
    font-size: 0.9rem;
    max-width: 160px;
    overflow: hidden;
    padding: 10px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .logo-text { font-size: 1.1rem; }
  .header-inner { gap: var(--space-1); padding: var(--space-2); }
  .header-inner .cta-button { max-width: 110px; padding: 8px 14px; font-size: 0.8rem; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .primary-nav {
    background: var(--color-2);
    border-top: 1px solid rgba(255, 43, 214, 0.2);
    display: none;
    left: 0;
    padding: var(--space-3);
    position: absolute;
    right: 0;
    top: 100%;
  }
  .primary-nav.active { display: block; }
  .primary-nav ul {
    flex-direction: column;
    gap: var(--space-2);
  }
  .header-inner .cta-button {
    font-size: 0.9rem;
    max-width: 160px;
    overflow: hidden;
    padding: 10px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .logo-text { font-size: 1.1rem; }
  .header-inner { gap: var(--space-1); padding: var(--space-2); }
  .header-inner .cta-button { max-width: 110px; padding: 8px 14px; font-size: 0.8rem; }
}