:root {
  --bg: #06070b;
  --panel: #0b0f16;
  --panel-2: #090d14;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.1);
  --yellow: #facc15;
  --emerald: #34d399;
  --cyan: #22d3ee;
  --shadow-xl: 0 40px 140px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: var(--bg);
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a.active {
  color: #facc15;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 16px 28px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }

.btn-primary {
  background: linear-gradient(180deg, #ffd84d 0%, #f5b301 100%);
  color: #000;
  font-weight: 600;
  box-shadow: 0 18px 60px rgba(250,204,21,0.22);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.10);
}

.site-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  cursor: pointer;
  flex-shrink: 0;
}

.site-brand-kicker {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.2;
}

.site-brand-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}


.site-nav-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.site-nav-links a:hover {
  color: white;
}

.site-nav-links a.active {
  color: #facc15;
}

.site-nav-cta {
  display: fixed;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1100px) {
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-brand,
  .site-nav-links,
  .site-nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-nav-links {
    display: flex;
  }

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

@media(max-width: 900px){
  .top-nav{
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links{
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .site-nav-links {
    gap: 16px;
  }

  .site-nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .site-nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}


.page-main {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

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

.animated-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.07;
}

.animated-grid::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 560px;
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.14), transparent 42%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.animated-grid::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -15%;
  width: 38%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  filter: blur(24px);
  animation: sweep 11s linear infinite;
}

.orb {
  position: absolute;
  pointer-events: none;
  filter: blur(48px);
  border-radius: 999px;
  z-index: 1;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-yellow {
  top: 4rem;
  left: 2rem;
  width: 10rem;
  height: 10rem;
  background: rgba(250, 204, 21, 0.18);
}

.orb-cyan {
  right: 2rem;
  bottom: 2rem;
  width: 13rem;
  height: 13rem;
  background: rgba(34, 211, 238, 0.18);
  animation-delay: 1s;
}



.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-bottom: 96px;
}

.hero-copy {
  max-width: 760px;
  padding-top: 4rem;;
}

.hero-calendar{
  margin-top: 3rem;
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--emerald);
  border-radius: 999px;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-title {
  margin: 2rem 0 0;
  font-size: clamp(3rem, 8vw, 4.8rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.hero-title .accent {
  display: block;
  color: var(--yellow);
}

.hero-text {
  margin-top: 1.75rem;
  max-width: 52rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.9;
}

.hero-points {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 950px;
}

.point-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-chips {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.booking-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid var(--border);
  background: rgba(11, 15, 22, 0.95);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
}

.booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.12), transparent 30%);
  opacity: 0.7;
  pointer-events: none;
}

.booking-shell::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
}

.booking-shell-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 1.7rem;
  border: 1px solid var(--border);
  background: var(--panel-2);
  padding: 1.25rem;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.tiny-kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-2);
}

.card-title {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 500;
}

.status-pill {
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: rgba(52, 211, 153, 0.95);
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
}

.booking-grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.92fr 1.08fr;
}

.booking-grid-single {
  display: grid;
  gap: 1rem;
  grid-template-columns: 320px 1fr;
  margin-top: 1.25px;
}


.call-details,
.calendar-embed-wrap {
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.detail-row {
  margin-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
  padding: 0.95rem 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

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

.calendar-frame {
  margin-top: 0.85rem;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  background: white;
}

.calendar-note {
  margin-top: 1rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

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

.section-muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  padding-top: 4.5rem;
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
}

.accent-kicker {
  color: rgba(250, 204, 21, 0.78);
}

.section-title {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.muted-line {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.section-copy {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
}

.expect-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.expect-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.expect-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.expect-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 7rem;
  background: linear-gradient(to bottom, rgba(250, 204, 21, 0.14), transparent);
  opacity: 0.7;
}

.expect-label {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(250, 204, 21, 0.75);
}

.expect-items {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.expect-item {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes sweep {
  from { transform: translateX(0%); }
  to { transform: translateX(190%); }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  25% { transform: translateY(-18px) translateX(10px) scale(1.04); }
  50% { transform: translateY(0) translateX(-8px) scale(0.98); }
  75% { transform: translateY(14px) translateX(6px) scale(1.03); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .booking-grid,
  .final-band-grid,
  .split-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .expect-grid,
  .hero-points,
  .final-metrics {
    grid-template-columns: 1fr;
  }
}

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

  .hero-grid {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .calendar-frame iframe {
    min-height: 560px;
  }
}

.section :last-of-type{
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}
