:root {
  --bg-main: #050714;
  --bg-panel: rgba(6, 8, 24, 0.88);
  --border-panel: rgba(185, 160, 255, 0.45);
  --accent: #b892ff;
  --accent-strong: #e5c3ff;
  --accent-soft: rgba(164, 136, 255, 0.4);
  --text-main: #f7f4ff;
  --text-muted: #c6c0e0;
  --promo-bg: rgba(15, 9, 44, 0.95);
  --promo-accent: #ffdd7b;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 10%, rgba(120, 90, 255, 0.45), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 200, 0.35), transparent 55%),
    radial-gradient(circle at 0% 90%, rgba(80, 200, 255, 0.25), transparent 55%),
    var(--bg-main);
  background-attachment: fixed;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.9), transparent 60%),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.8), transparent 60%),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.75), transparent 60%);
  z-index: -1;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

.site-header {
  padding: 1.25rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.brand-logo img {
  max-width: 360px;
  height: auto;
}

.brand-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  padding: 0 1.5rem;
  margin-top: -20px;
}

.main {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.hero {
  width: 100%;
  padding: 2rem 0 3rem;
}

.hero-inner {
  position: relative;
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 auto 3rem;
  border-radius: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  box-shadow:
    0 18px 50px rgba(4, 0, 40, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at 10% 0%, rgba(185, 146, 255, 0.25), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid rgba(184, 146, 255, 0.6);
  background: radial-gradient(circle at 0% 0%, rgba(184, 146, 255, 0.28), rgba(4, 2, 26, 0.9));
}

.hero-title {
  margin: 1.25rem 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-intro {
  font-weight: 500;
  color: var(--accent-strong);
  margin-top: 1.25rem !important;
}

.hero-inner p {
  margin: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  text-align: justify;
}

.section-title {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-family: "Marcellus", serif;
  font-size: 1.2rem;
  color: var(--accent-strong);
}

.hero-actions {
  margin-top: 2rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: auto;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  justify-content: center;
}

.socials a {
  text-decoration: none;
  padding: 0.65rem;
  border-radius: 999px;
}

.socials a:hover svg path {
  fill: var(--accent-strong);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-copy {
  opacity: 0.8;
  margin: auto;
}

.footer-brand {
  color: var(--accent-strong);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 800px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .hero-inner {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 560px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    align-self: flex-end;
  }

  .hero-actions {
    align-items: flex-start;
  }
}