/* ----------------------------------------------------
   ROOT + GLOBAL
---------------------------------------------------- */
:root {
  --bg: #020617;
  --bg-alt: #040b1d;
  --accent: #ec38ff;
  --accent-2: #7b2cff;
  --accent-grad: linear-gradient(135deg, #ec38ff, #7b2cff);
  --text-main: #ffffff;
  --text-muted: #a5b4fc;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --card-bg: rgba(15, 23, 42, 0.9);
  --danger: #fb7185;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  background-attachment: fixed;
}

/* Background stars */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0, transparent 40%),
    radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,0.5) 0, transparent 40%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.4) 0, transparent 40%);
  z-index: -1;
}

/* ----------------------------------------------------
   HEADER + NAVIGATION
---------------------------------------------------- */

header {
  width: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.9);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 60px;
  width: auto;
}

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

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.brand-text span:last-child {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

/* Desktop nav */

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 1.75rem; /* medium spacing */
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-desktop a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent-grad);
  transition: width 0.2s ease;
  border-radius: 999px;
}

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

.nav-desktop a:hover::after,
.nav-desktop a.active-link::after {
  width: 100%;
}

.nav-desktop a.active-link {
  color: var(--text-main);
}

/* CTA button on right */

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

/* ----------------------------------------------------
   BUTTONS
---------------------------------------------------- */

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.btn-primary {
  background-image: var(--accent-grad);
  border-color: transparent;
  color: #0b1120;
  box-shadow: 0 10px 30px rgba(236, 56, 255, 0.35);
}

.btn-primary span.arrow {
  font-size: 1rem;
  line-height: 1;
}

.btn-outline {
  border-color: var(--border-subtle);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.9);
}

/* ----------------------------------------------------
   MOBILE MENU
---------------------------------------------------- */

.mobile-menu-button {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15,23,42,0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-button.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(148,163,184,0.2);
  background: rgba(15,23,42,0.98);
  backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0.75rem 1.25rem 0.5rem;
}

.mobile-nav li {
  margin-bottom: 0.4rem;
}

.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.mobile-apply-btn {
  margin: 0.5rem 1.25rem 0.75rem;
  width: calc(100% - 2.5rem);
  justify-content: center;
}

/* ----------------------------------------------------
   LAYOUT
---------------------------------------------------- */

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

section {
  margin-bottom: 4rem;
}

/* ----------------------------------------------------
   HERO
---------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
  padding-top: 1.5rem;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  background-image: var(--accent-grad);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-sub strong {
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-footnote strong {
  color: var(--accent);
}

/* Hero panel right */

.hero-panel {
  position: relative;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(236,56,255,0.25), transparent 60%), var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 40px rgba(15,23,42,0.7);
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.3rem;
}

.hero-panel-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-status-pill {
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  padding: 0.15rem 0.7rem;
  font-size: 0.7rem;
  color: #bbf7d0;
  background: rgba(21, 128, 61, 0.2);
}

.hero-panel-main {
  font-size: 0.85rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.day-card {
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at top, rgba(79,70,229,0.25), transparent 55%), rgba(15,23,42,0.9);
  padding: 0.65rem;
}

.day-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.day-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.day-body {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero-email {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-email a {
  color: var(--accent);
  text-decoration: none;
}

/* ----------------------------------------------------
   SECTIONS / CARDS / GRID
---------------------------------------------------- */

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
}

.about-text p {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.about-text .highlight {
  color: var(--accent);
  font-weight: 600;
}

.about-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-grid li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.about-grid li::before {
  content: "▸";
  font-size: 0.8rem;
  color: var(--accent);
}

.card {
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 14px 35px rgba(15,23,42,0.6);
}

/* Dates */

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.date-card {
  border-radius: 1.1rem;
  padding: 1rem;
  border: 1px solid rgba(148,163,184,0.3);
  background: radial-gradient(circle at top, rgba(236,56,255,0.2), transparent 55%), rgba(15,23,42,0.9);
  position: relative;
  overflow: hidden;
}

.date-month {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.date-day {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.date-track {
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.date-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.date-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.65rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(236,56,255,0.6);
  color: #f9a8d4;
  background: rgba(24, 24, 27, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.dates-empty {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Columns (Who it's for, etc.) */

.columns-3 {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.9rem;
}

.pill-heading {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.columns-3 h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.columns-3 p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   CONTACT / APPLY
---------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.75rem;
  align-items: center;
}

form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.18rem;
  display: block;
}

input,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.95);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-main);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* ----------------------------------------------------
   SHOP GRID
---------------------------------------------------- */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.product-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(148,163,184,0.3);
  background: radial-gradient(circle at top, rgba(236,56,255,0.18), transparent 55%), rgba(15,23,42,0.95);
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.product-actions {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-start;
}

.shop-status {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */

footer {
  border-top: 1px solid rgba(148,163,184,0.3);
  padding: 1.4rem 1.25rem 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */

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

  .hero-panel {
    order: -1;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-desktop {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  main {
    padding-top: 1.75rem;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .hero {
    gap: 2rem;
  }
}
