/* === BASE STYLES === */:root {
  --color-1: #0a0e27;
  --color-2: #141938;
  --color-3: #1e2548;
  --color-4: #ff2d8a;
  --color-5: #ff6ec7;
  --color-6: #00e0ff;
  --color-7: #ffffff;
  --color-8: #b8bcd9;
  --color-9: #ffd700;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --radius-1: 8px;
  --radius-2: 16px;
  --radius-3: 24px;
  --shadow-1: 0 10px 40px rgba(255, 45, 138, 0.3);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.5);
  --gradient-1: linear-gradient(135deg, #ff2d8a 0%, #ff6ec7 100%);
  --gradient-2: linear-gradient(135deg, #00e0ff 0%, #ff2d8a 100%);
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--color-1);
  color: var(--color-7);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

p { color: var(--color-8); margin-bottom: var(--space-2); }
strong { color: var(--color-7); }

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

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

.cta-button, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  background: var(--gradient-1);
  color: var(--color-7) !important;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-1);
  text-transform: uppercase;
  min-height: 48px;
}

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

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

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

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

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

.content-image.wide { width: 100%; }

/* === LAYOUT STYLES === */
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 138, 0.2);
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  gap: var(--space-2);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
  color: var(--color-7);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-7);
  transition: all 0.3s;
}

.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); }

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

header nav .nav-list a {
  color: var(--color-7);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

header nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s;
}

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

#siteFooter {
  background: var(--color-2);
  padding: var(--space-5) 0 var(--space-3);
  border-top: 1px solid rgba(255, 45, 138, 0.2);
  margin-top: var(--space-6);
}

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

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

.footer-list a {
  color: var(--color-8);
  text-decoration: none;
}

.footer-list a:hover { color: var(--color-5); }

.copyright {
  color: var(--color-8);
  font-size: 0.85rem;
  max-width: 700px;
  margin: 0;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-2);
    border-bottom: 1px solid rgba(255, 45, 138, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  header nav.active { max-height: 400px; }
  
  header nav .nav-list {
    flex-direction: column;
    padding: var(--space-2);
    gap: var(--space-1);
  }
  
  .headerInner .cta-button {
    display: none;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-2);
    border-bottom: 1px solid rgba(255, 45, 138, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  header nav.active { max-height: 400px; }
  
  header nav .nav-list {
    flex-direction: column;
    padding: var(--space-2);
    gap: var(--space-1);
  }
  
  .headerInner .cta-button {
    display: none;
  }
}