@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --bg: #070713;
  --bg-2: #0d1028;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --soft: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.16);
  --purple: #8c23ff;
  --purple-2: #b637ff;
  --orange: #ff7a18;
  --cyan: #13d7ff;
  --green: #2de58f;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(115, 33, 255, .32), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(255, 100, 0, .24), transparent 24%),
    linear-gradient(180deg, #060611 0%, #0b0920 45%, #05050d 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: .35;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 14, .70);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand img {
  width: 132px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a:hover {
  color: white;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transition: .25s;
}

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

.menu-toggle {
  display: none;
  color: white;
  background: transparent;
  border: 0;
  font-size: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #6e23ff, #b532ff);
  box-shadow: 0 14px 34px rgba(139, 35, 255, .34);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
}

.full {
  width: 100%;
}

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 18, .98) 0%, rgba(9, 6, 24, .86) 46%, rgba(9, 6, 24, .34) 100%),
    url("assets/alquimia-main-poster.png") center/cover no-repeat;
  opacity: .48;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  color: #dcc6ff;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-weight: 900;
  font-size: 13px;
}

.hero h1,
.section-heading h2,
.hotel-copy h2,
.final-cta h2 {
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: .12em;
  line-height: .9;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(70px, 12vw, 164px);
  text-shadow: 0 0 34px rgba(255,255,255,.18);
}

.tagline {
  margin: 0 0 26px;
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: .18em;
  font-size: clamp(26px, 4vw, 52px);
  color: rgba(255,255,255,.86);
}

.tagline span {
  display: block;
  color: white;
}

.event-meta {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-text {
  color: var(--muted);
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.centered {
  justify-content: center;
}

.badge {
  display: inline-flex;
  border: 1px solid rgba(255,122,24,.55);
  color: #ffc38d;
  background: rgba(255,122,24,.11);
  padding: 11px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 13px;
}

.hero-art {
  position: relative;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(126, 33, 255, .56), rgba(255, 115, 0, .18), transparent 65%);
  filter: blur(36px);
  z-index: -1;
}

.hero-art img {
  width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,.55));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading h2 {
  margin: 12px 0;
  font-size: clamp(46px, 7vw, 82px);
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card,
.hotel-card,
.important-box,
.payment-note,
.link-card,
.step {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    rgba(10, 9, 25, .86);
  box-shadow: var(--shadow);
}

.price-card {
  position: relative;
  border-radius: 26px;
  padding: 28px;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(140, 35, 255, .22), transparent 45%);
  pointer-events: none;
}

.price-card.featured {
  border-color: rgba(178, 55, 255, .78);
  box-shadow: 0 0 0 1px rgba(178,55,255,.28), 0 28px 90px rgba(139,35,255,.22);
}

.card-ribbon {
  display: inline-flex;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  padding: 8px 13px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
}

.price-card h3 {
  position: relative;
  margin: 0;
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: .14em;
  font-size: 50px;
}

.benefit {
  position: relative;
  min-height: 52px;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}

.tier {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 18px 0;
}

.tier span {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}

.tier small {
  color: rgba(255,255,255,.52);
}

.tier strong {
  font-size: 26px;
  white-space: nowrap;
}

.tier em {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  font-style: normal;
}

.payment-note {
  margin-top: 26px;
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--muted);
}

.payment-note strong {
  color: white;
}

.competitor-section {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(140,35,255,.07));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #31106e);
  font-weight: 900;
  box-shadow: 0 0 30px rgba(140,35,255,.35);
}

.step h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.step p {
  color: var(--muted);
  line-height: 1.5;
}

.important-box {
  margin-top: 24px;
  border-radius: 22px;
  padding: 24px;
  color: rgba(255,255,255,.83);
  text-align: center;
  font-weight: 700;
}

.hotel-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  border-radius: 30px;
  padding: 28px;
  overflow: hidden;
}

.hotel-image img {
  border-radius: 22px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: .88;
}

.hotel-copy h2 {
  font-size: clamp(40px, 6vw, 70px);
  margin: 10px 0 20px;
}

.hotel-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.hotel-prices div {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,.05);
}

.hotel-prices span {
  display: block;
  min-height: 58px;
  color: rgba(255,255,255,.70);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 13px;
  font-weight: 800;
}

.hotel-prices strong {
  display: block;
  font-size: 44px;
  margin-top: 12px;
}

.small-note {
  color: var(--muted);
}

.breakfast {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(140,35,255,.25);
  border: 1px solid rgba(140,35,255,.40);
  font-weight: 800;
}

.hotel-contact {
  display: grid;
  gap: 6px;
  margin: 22px 0;
}

.hotel-contact a {
  color: #caa7ff;
  font-weight: 900;
}

.links-section {
  padding-top: 40px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.link-card {
  border-radius: 24px;
  padding: 24px;
  min-height: 170px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.link-card span {
  font-size: 32px;
}

.link-card strong {
  font-size: 22px;
}

.link-card small {
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 10% 90%, rgba(255,122,24,.28), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(140,35,255,.32), transparent 28%);
}

.final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(52px, 8vw, 96px);
}

.final-cta p {
  color: var(--muted);
  font-size: 20px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 26px clamp(18px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.72);
  background: rgba(0,0,0,.36);
}

.site-footer img {
  width: 120px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open {
    position: absolute;
    display: grid;
    top: 76px;
    left: 18px;
    right: 18px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(8, 8, 20, .96);
    border: 1px solid rgba(255,255,255,.12);
  }

  .hero-grid,
  .hotel-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    order: -1;
  }

  .pricing-grid,
  .steps,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 68px;
  }

  .pricing-grid,
  .steps,
  .link-grid,
  .hotel-prices {
    grid-template-columns: 1fr;
  }

  .tier {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
