/* ========================================================================== */
/*  Variables                                                                 */
/* ========================================================================== */

:root {
  /* Color palette - cyberpunk neon on dark */
  --color-background: #04030a;
  --color-surface: rgba(10, 10, 18, 0.96);
  --color-surface-alt: rgba(15, 15, 30, 0.9);
  --color-surface-elevated: rgba(18, 18, 36, 0.96);

  --color-text: #f5f5ff;
  --color-text-muted: #a4a8c4;
  --color-text-soft: #7a7fa3;

  --color-primary: #ff0f7b; /* neon pink */
  --color-primary-soft: rgba(255, 15, 123, 0.2);
  --color-primary-strong: #ff4fa3;

  --color-accent-yellow: #ffe74a; /* electric yellow */
  --color-accent-yellow-soft: rgba(255, 231, 74, 0.16);

  --color-accent-red: #ff1744; /* bright red */
  --color-accent-red-soft: rgba(255, 23, 68, 0.18);

  --color-success: #4cd964;
  --color-warning: #ffcc00;
  --color-danger: #ff3b30;

  --color-gray-50: #0b0b14;
  --color-gray-100: #151522;
  --color-gray-200: #1f2030;
  --color-gray-300: #282a3a;
  --color-gray-400: #3a3d52;
  --color-gray-500: #4c5070;
  --color-gray-600: #6f7398;
  --color-gray-700: #9296ba;
  --color-gray-800: #c5c8e2;
  --color-gray-900: #e8e9f7;

  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-strong: rgba(255, 255, 255, 0.18);

  /* Gradients */
  --gradient-neon: linear-gradient(135deg, #ff0f7b 0%, #f89b29 50%, #ff1744 100%);
  --gradient-neon-soft: radial-gradient(circle at top, rgba(255, 15, 123, 0.32) 0, rgba(255, 231, 74, 0.08) 40%, transparent 72%);
  --gradient-hero-overlay: radial-gradient(circle at 20% 0%, rgba(255, 15, 123, 0.4) 0, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(255, 231, 74, 0.24) 0, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 22, 0.9), rgba(5, 5, 15, 0.96));

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Segoe UI", sans-serif;
  --font-display: "Orbitron", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Roboto", sans-serif;
  --font-mono: "JetBrains Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px */
  --font-size-lg: 1.25rem;   /* 20px */
  --font-size-xl: 1.5rem;    /* 24px */
  --font-size-2xl: 1.875rem; /* 30px */
  --font-size-3xl: 2.25rem;  /* 36px */
  --font-size-4xl: 3rem;     /* 48px */
  --font-size-5xl: 3.75rem;  /* 60px */

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Spacing scale (px) */
  --space-0: 0;
  --space-1: 2px;
  --space-2: 4px;
  --space-3: 6px;
  --space-4: 8px;
  --space-5: 10px;
  --space-6: 12px;
  --space-8: 16px;
  --space-10: 20px;
  --space-12: 24px;
  --space-16: 32px;
  --space-20: 40px;
  --space-24: 48px;
  --space-28: 56px;
  --space-32: 64px;
  --space-40: 80px;
  --space-48: 96px;

  /* Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows (neon / depth) */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-medium: 0 18px 40px rgba(0, 0, 0, 0.75);
  --shadow-neon-pink: 0 0 18px rgba(255, 15, 123, 0.7);
  --shadow-neon-yellow: 0 0 16px rgba(255, 231, 74, 0.6);
  --shadow-neon-red: 0 0 18px rgba(255, 23, 68, 0.7);

  /* Transitions & motion */
  --transition-fast: 120ms ease-out;
  --transition-base: 180ms ease-out;
  --transition-slow: 260ms ease-out;

  --transform-hover-lift: translateY(-2px);
  --transform-press: translateY(0);
}

@media (min-width: 768px) {
  :root {
    --font-size-xl: 1.75rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.25rem;
    --font-size-5xl: 4rem;
  }
}

/* ========================================================================== */
/*  Reset / Normalize                                                         */
/* ========================================================================== */

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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none !important; /* project consistency requirement */
}

button, input, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  padding: 0;
  background: none;
}

textarea {
  resize: vertical;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

:focus {
  outline: none;
}

[hidden] {
  display: none !important;
}

/* ========================================================================== */
/*  Base Styles                                                               */
/* ========================================================================== */

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 60vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

strong, b {
  font-weight: 600;
}

small {
  font-size: 0.875em;
}

code, pre {
  font-family: var(--font-mono);
}

a {
  position: relative;
  transition: color var(--transition-base),
    text-shadow var(--transition-base),
    background-color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(255, 15, 123, 0.7);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  margin: var(--space-16) 0;
}

::selection {
  background: rgba(255, 15, 123, 0.55);
  color: #fff;
}

/* ========================================================================== */
/*  Accessibility                                                             */
/* ========================================================================== */

:focus-visible {
  outline: 2px solid var(--color-accent-yellow);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 1px rgba(5, 5, 10, 0.9), 0 0 0 2px var(--color-accent-yellow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================================================== */
/*  Layout Utilities                                                          */
/* ========================================================================== */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
  max-width: 1200px;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1240px;
  }
}

.section {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.section--tight {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section__header {
  margin-bottom: var(--space-16);
}

.section__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-3);
}

.section__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.section__title::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

/* Flex utilities */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

.items-center {
  align-items: center;
}

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

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--space-4);
}

.gap-3 {
  gap: var(--space-6);
}

.gap-4 {
  gap: var(--space-8);
}

.gap-6 {
  gap: var(--space-12);
}

.gap-8 {
  gap: var(--space-16);
}

/* Grid utilities */

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-12);
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Width & alignment helpers */

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-8); }
.mt-6 { margin-top: var(--space-12); }
.mt-8 { margin-top: var(--space-16); }
.mt-10 { margin-top: var(--space-20); }
.mt-12 { margin-top: var(--space-24); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-8); }
.mb-6 { margin-bottom: var(--space-12); }
.mb-8 { margin-bottom: var(--space-16); }
.mb-10 { margin-bottom: var(--space-20); }
.mb-12 { margin-bottom: var(--space-24); }

/* ========================================================================== */
/*  Navigation & Header Helpers                                               */
/* ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(4, 3, 16, 0.96), rgba(4, 3, 16, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.site-logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-neon);
  box-shadow: var(--shadow-neon-pink);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
  padding: var(--space-2) 0;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile nav toggle (burger) */

.nav-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* project consistency requirement */
  gap: 4px;
  width: 36px;
  height: 32px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-base),
    opacity var(--transition-base),
    background-color var(--transition-base);
}

.nav-toggle--active .nav-toggle__bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle--active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.site-header--menu-open .nav-mobile {
  display: block;
}

.nav-mobile {
  display: none;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nav-mobile__link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.nav-mobile__link:hover,
.nav-mobile__link--active {
  color: var(--color-primary);
}

@media (min-width: 960px) {
  .nav {
    display: block;
  }

  .nav-mobile {
    display: none !important;
  }

  .nav-toggle {
    display: none;
  }
}

/* ========================================================================== */
/*  Buttons                                                                   */
/* ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    opacity var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  color: #050308;
  background-image: var(--gradient-neon);
  box-shadow: var(--shadow-neon-pink);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 40%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn--outline {
  color: var(--color-text);
  background: rgba(10, 10, 22, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn--ghost {
  color: var(--color-text-soft);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--accent {
  color: #050308;
  background: linear-gradient(135deg, #ffe74a, #ffb347);
  box-shadow: var(--shadow-neon-yellow);
}

.btn:hover:not(:disabled) {
  transform: var(--transform-hover-lift);
}

.btn--primary:hover:not(:disabled) {
  box-shadow: var(--shadow-neon-pink), 0 16px 45px rgba(0, 0, 0, 0.85);
}

.btn--primary:hover::before {
  opacity: 0.3;
}

.btn--outline:hover:not(:disabled),
.btn--ghost:hover:not(:disabled) {
  border-color: var(--color-primary);
  box-shadow: 0 0 16px rgba(255, 15, 123, 0.55);
  color: var(--color-primary-strong);
}

.btn:active:not(:disabled) {
  transform: var(--transform-press);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  display: inline-flex;
  width: 1.15em;
  height: 1.15em;
}

/* ========================================================================== */
/*  Form Elements                                                             */
/* ========================================================================== */

.form {
  display: grid;
  gap: var(--space-6);
}

.form__row {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.label {
  font-size: var(--font-size-sm);
  color: var(--color-gray-800);
}

.label span.required {
  color: var(--color-accent-red);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background: rgba(12, 12, 24, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base),
    transform var(--transition-base);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-text-soft);
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(5, 5, 10, 0.9), 0 0 0 2px rgba(255, 15, 123, 0.8);
  background: rgba(15, 15, 32, 0.96);
}

.input--error,
.textarea--error,
.select--error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.55);
}

.form__hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.form__error {
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(10, 10, 22, 0.9);
}

/* ========================================================================== */
/*  Card & Panel Components                                                   */
/* ========================================================================== */

.card {
  position: relative;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(12, 12, 26, 0.98), rgba(9, 8, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: radial-gradient(circle at 0 0, rgba(255, 15, 123, 0.12) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 231, 74, 0.1) 0, transparent 50%);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.card__content {
  position: relative;
  z-index: 1;
}

.card--glass {
  background: linear-gradient(135deg, rgba(15, 15, 32, 0.78), rgba(5, 4, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.card--border-neon {
  border-image: linear-gradient(135deg, rgba(255, 15, 123, 0.9), rgba(255, 231, 74, 0.9)) 1;
}

.card--compact {
  padding: var(--space-6);
}

.card--hoverable {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card--hoverable:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium), 0 0 24px rgba(255, 15, 123, 0.35);
  border-color: rgba(255, 15, 123, 0.65);
}

.card__eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-2);
}

.card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.card__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

/* FAQ block */

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 18, 0.96);
  padding: var(--space-6);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: var(--space-4);
}

.faq-item__question h3 {
  font-size: var(--font-size-md);
  margin-bottom: 0;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.faq-item__answer {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ========================================================================== */
/*  Hero / Cyber Grid Helpers                                                 */
/* ========================================================================== */

.hero {
  position: relative;
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  opacity: 1;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mix-blend-mode: soft-light;
  opacity: 0.22;
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-16);
  align-items: center;
}

.hero__headline {
  max-width: 640px;
}

.hero__kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-3);
}

.hero__title {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

.hero__title span.highlight {
  background-image: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__meta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 20, 0.9);
}

.hero-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent-yellow);
  box-shadow: 0 0 10px rgba(255, 231, 74, 0.9);
}

/* Floating hero cards around center headline */

.hero-floats {
  position: relative;
  margin-top: var(--space-12);
}

.hero-floats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.hero-float-card {
  position: relative;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(12, 12, 26, 0.9), rgba(8, 8, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.hero-float-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255, 15, 123, 0.35) 0, transparent 55%);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero-float-card--pink {
  border-color: rgba(255, 15, 123, 0.8);
  box-shadow: var(--shadow-neon-pink);
}

.hero-float-card--yellow {
  border-color: rgba(255, 231, 74, 0.9);
  box-shadow: var(--shadow-neon-yellow);
}

.hero-float-card--red {
  border-color: rgba(255, 23, 68, 0.9);
  box-shadow: var(--shadow-neon-red);
}

.hero-float-card__label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

.hero-float-card__value {
  font-size: var(--font-size-md);
  font-weight: 600;
}

.hero-float-card__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

@media (min-width: 960px) {
  .hero {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .hero-floats__grid {
    position: absolute;
    inset: -40px -40px;
    pointer-events: none;
  }

  .hero-float-card {
    pointer-events: auto;
  }

  .hero-float-card--pink {
    transform: translate(-10%, -4%) rotate(-4deg);
  }

  .hero-float-card--yellow {
    transform: translate(35%, -30%) rotate(3deg);
  }

  .hero-float-card--red {
    transform: translate(16%, 20%) rotate(-2deg);
  }
}

/* ========================================================================== */
/*  Badges & Chips                                                            */
/* ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.badge--pink {
  color: var(--color-primary-strong);
  border-color: rgba(255, 15, 123, 0.9);
  background: rgba(255, 15, 123, 0.12);
}

.badge--yellow {
  color: var(--color-accent-yellow);
  border-color: rgba(255, 231, 74, 0.9);
  background: rgba(255, 231, 74, 0.08);
}

.badge--red {
  color: var(--color-accent-red);
  border-color: rgba(255, 23, 68, 0.9);
  background: rgba(255, 23, 68, 0.12);
}

.chip-metric {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  background: rgba(8, 8, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chip-metric__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(255, 15, 123, 0.9);
}

/* ========================================================================== */
/*  Tables (e.g. chips / points system)                                      */
/* ========================================================================== */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

thead {
  background: rgba(15, 15, 32, 0.96);
}

th, td {
  padding: 0.65rem 0.75rem;
  text-align: left;
}

th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

tbody tr:nth-child(even) {
  background-color: rgba(8, 8, 20, 0.96);
}

tbody tr:nth-child(odd) {
  background-color: rgba(5, 5, 14, 0.96);
}

tbody tr:hover {
  background-color: rgba(255, 15, 123, 0.05);
}

/* ========================================================================== */
/*  Lists                                                                     */
/* ========================================================================== */

.list-checked {
  display: grid;
  gap: var(--space-3);
  padding: 0;
}

.list-checked li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.list-checked__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 231, 74, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--color-accent-yellow);
}

.list-checked__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ========================================================================== */
/*  Footer                                                                    */
/* ========================================================================== */

.site-footer {
  margin-top: var(--space-32);
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
  background: radial-gradient(circle at top, rgba(255, 15, 123, 0.24) 0, transparent 55%),
    linear-gradient(to bottom, #05030d, #020009);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-16);
}

.site-footer__bottom {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-nav a {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========================================================================== */
/*  Helpers for Event Sections (Offer, Formats)                               */
/* ========================================================================== */

.tagline {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  max-width: 520px;
}

.highlight-text {
  color: var(--color-primary-strong);
}

.highlight-soft {
  color: var(--color-accent-yellow);
}

.section-grid-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
}

@media (min-width: 992px) {
  .section-grid-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.metric-row__item {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

/* ========================================================================== */
/*  Images & Galleries                                                        */
/* ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), transparent 60%);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.2);
}

/* ========================================================================== */
/*  No Horizontal Overflow                                                    */
/* ========================================================================== */

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

/* ========================================================================== */
/*  End of base.css                                                           */
/* ========================================================================== */
