:root {
  --bg: #07080b;
  --bg-soft: #0f1218;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.10);
  --text: #f5f7fb;
  --muted: rgba(255, 255, 255, 0.68);
  --red: #e10600;
  --red-2: #ff3b30;
  --wine: #7b0010;
  --gold: #ffca55;
  --soft-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --premium-shadow: 0 30px 80px rgba(225, 6, 0, 0.18);
  --radius: 24px;
  --radius-lg: 32px;
  --nav-height: 82px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(225, 6, 0, 0.16), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(255, 202, 85, 0.08), transparent 20%),
    linear-gradient(180deg, #07080b 0%, #0b0d12 42%, #08090d 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

section,
header,
footer {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
}

.section-space {
  padding: 110px 0;
}

.section-dark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 820px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffb8b2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Background FX */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -70px;
  background: rgba(225, 6, 0, 0.18);
}

.orb-2 {
  width: 290px;
  height: 290px;
  right: -80px;
  top: 28%;
  background: rgba(255, 202, 85, 0.10);
}

.bg-grid {
  position: fixed;
  inset: 0;
  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: 28px 28px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* Navbar */
.premium-nav {
  padding: 16px 0;
  background: transparent;
  transition: all 0.35s ease;
}

.premium-nav.scrolled {
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-dot {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, var(--red), #ff7a70);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.7);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-menu {
  background:
    radial-gradient(circle at top right, rgba(225,6,0,0.25), transparent 30%),
    linear-gradient(180deg, #0a0c11 0%, #06070a 100%);
}

/* Buttons */
.btn-premium {
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red) 0%, #ff544a 100%);
  box-shadow: 0 12px 30px rgba(225, 6, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-premium:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(225, 6, 0, 0.42);
  filter: saturate(1.05);
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.06), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.hero-content {
  z-index: 2;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ffd3cf 32%, #ff6b61 62%, #ffca55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 720px;
  font-size: 1.12rem;
}

.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.stat-card {
  padding: 22px 18px;
  text-align: center;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.floating-card {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  min-height: 560px;
  box-shadow: var(--premium-shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.panel-image {
  position: absolute;
  inset: 0;
}

.panel-image-main {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0,0,0,0.68)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='1600' viewBox='0 0 1200 1600'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23d80000'/%3E%3Cstop offset='1' stop-color='%23330000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='1600' fill='url(%23a)'/%3E%3Ccircle cx='840' cy='260' r='190' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='990' cy='1150' r='120' fill='rgba(255,204,102,0.12)'/%3E%3Crect x='170' y='260' width='860' height='900' rx='36' fill='rgba(255,255,255,0.06)' stroke='rgba(255,255,255,0.20)'/%3E%3Crect x='240' y='350' width='720' height='340' rx='20' fill='rgba(0,0,0,0.18)'/%3E%3Crect x='240' y='730' width='340' height='220' rx='20' fill='rgba(255,255,255,0.10)'/%3E%3Crect x='620' y='730' width='340' height='220' rx='20' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='380' cy='1140' r='100' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='600' cy='1140' r='100' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='820' cy='1140' r='100' fill='rgba(255,255,255,0.08)'/%3E%3Cpath d='M280 545 C410 430, 520 655, 650 530 S890 575, 935 480' stroke='white' stroke-opacity='0.7' stroke-width='12' fill='none'/%3E%3Ctext x='250' y='675' fill='rgba(255,255,255,0.9)' font-family='Arial' font-size='42' font-weight='700'%3EFestival Brand Experience%3C/text%3E%3Ctext x='290' y='855' fill='white' font-family='Arial' font-size='30'%3EVisual Impact%3C/text%3E%3Ctext x='665' y='855' fill='white' font-family='Arial' font-size='30'%3ESocial Energy%3C/text%3E%3Ctext x='350' y='1155' fill='white' font-family='Arial' font-size='26'%3EMusic%3C/text%3E%3Ctext x='545' y='1155' fill='white' font-family='Arial' font-size='26'%3ELight%3C/text%3E%3Ctext x='750' y='1155' fill='white' font-family='Arial' font-size='26'%3EPeople%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.panel-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.mini-label {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffcfcb;
  font-weight: 700;
  margin-bottom: 10px;
}

.panel-overlay h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.panel-overlay p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
}

.hero-mini-card {
  position: absolute;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-mini-card i {
  font-size: 1.2rem;
  color: #ffd27c;
}

.card-1 {
  top: 44px;
  right: -10px;
}

.card-2 {
  bottom: 120px;
  left: -10px;
}

.card-3 {
  bottom: 32px;
  right: 10px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 34px;
  height: 54px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* Cards */
.premium-card {
  height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.05) 100%
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--soft-shadow);
}

.card-title-lg {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.image-card .mock-photo {
  border-radius: 22px;
  min-height: 320px;
  border: 1px solid rgba(255,255,255,0.10);
}

.mock-photo-1 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.40)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ff2a1a'/%3E%3Cstop offset='1' stop-color='%23800000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='800' fill='url(%23g)'/%3E%3Crect x='110' y='120' width='980' height='420' rx='26' fill='rgba(255,255,255,0.08)' stroke='rgba(255,255,255,0.24)'/%3E%3Ccircle cx='240' cy='650' r='48' fill='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='360' cy='650' r='48' fill='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='480' cy='650' r='48' fill='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='600' cy='650' r='48' fill='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='720' cy='650' r='48' fill='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='840' cy='650' r='48' fill='rgba(255,255,255,0.18)'/%3E%3Cpath d='M160 410 C280 300, 420 485, 560 380 S820 450, 1030 330' stroke='white' stroke-width='14' fill='none' stroke-opacity='0.7'/%3E%3Ctext x='175' y='255' fill='white' font-family='Arial' font-size='48' font-weight='700'%3EActivation Space%3C/text%3E%3Ctext x='175' y='315' fill='rgba(255,255,255,0.85)' font-family='Arial' font-size='26'%3EArchitecture • Sound • Gathering • Experience%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.mini-insight {
  height: 100%;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-insight i {
  font-size: 1.3rem;
  color: #ffd27c;
}

.mini-insight strong {
  font-size: 1rem;
}

.mini-insight span {
  color: var(--muted);
  font-size: 0.95rem;
}

.intro-strip {
  padding: 28px 30px;
  margin-top: -30px;
}

.soft-chip {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
}

/* Pillars */
.pillar-card {
  padding: 28px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(225,6,0,0.26), rgba(255,202,85,0.20));
  border: 1px solid rgba(255,255,255,0.12);
}

.pillar-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.pillar-card p {
  color: var(--muted);
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
}

.pillar-list i {
  color: #ffd27c;
}

/* Compare */
.comparison-box h4 {
  font-weight: 800;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.compare-side {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.compare-side.active {
  background: linear-gradient(180deg, rgba(225,6,0,0.20), rgba(255,255,255,0.06));
  border-color: rgba(255,255,255,0.14);
}

.compare-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffcbc6;
  font-weight: 700;
  margin-bottom: 8px;
}

.compare-side p {
  margin-bottom: 0;
  color: var(--muted);
}

.compare-arrow {
  font-size: 1.4rem;
  color: #ffd27c;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(225,6,0,0.45), rgba(255,255,255,0.1));
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff7c70);
  box-shadow: 0 0 0 8px rgba(225,6,0,0.10);
}

.timeline-card {
  padding: 26px 28px;
}

.timeline-step {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffccc7;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.timeline-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.timeline-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Experience cards */
.experience-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
}

.experience-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.experience-top i {
  font-size: 1.4rem;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(225,6,0,0.28), rgba(255,202,85,0.16));
  color: #fff;
}

.experience-top h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 800;
}

.experience-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Chart */
.chart-box h4 {
  font-weight: 800;
}

.meter-group {
  margin-bottom: 22px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.premium-progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff8574, var(--gold));
  box-shadow: 0 0 20px rgba(225,6,0,0.32);
}

.w-95 { width: 95%; }
.w-90 { width: 90%; }
.w-96 { width: 96%; }
.w-88 { width: 88%; }
.w-93 { width: 93%; }

/* Gallery */
.gallery-card {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--soft-shadow);
  transition: transform 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.gallery-small {
  min-height: 260px;
}

.gallery-overlay-card {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.56));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.gallery-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}

.gallery-overlay-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.gallery-overlay-card p {
  color: rgba(255,255,255,0.80);
}

.gallery-1 {
  background:
    linear-gradient(135deg, rgba(225,6,0,0.44), rgba(255,202,85,0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23b50000'/%3E%3Cstop offset='1' stop-color='%23ff4b2b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='900' fill='url(%23g)'/%3E%3Crect x='150' y='140' width='1100' height='420' rx='34' fill='rgba(255,255,255,0.08)' stroke='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='260' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='400' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='540' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='680' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='820' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='960' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='1100' cy='680' r='55' fill='rgba(255,255,255,0.15)'/%3E%3Cpath d='M220 390 C420 240, 620 510, 790 380 S1100 440, 1190 320' stroke='white' stroke-width='16' fill='none' stroke-opacity='0.72'/%3E%3Ctext x='220' y='255' fill='white' font-family='Arial' font-size='54' font-weight='700'%3EBrand Activation%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.gallery-2 {
  background:
    linear-gradient(135deg, rgba(100,0,0,0.22), rgba(255,140,0,0.10)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23210812'/%3E%3Cstop offset='1' stop-color='%23b50000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='900' fill='url(%23g2)'/%3E%3Ccircle cx='1090' cy='170' r='120' fill='rgba(255,202,85,0.18)'/%3E%3Crect x='150' y='200' width='1100' height='360' rx='26' fill='rgba(255,255,255,0.08)' stroke='rgba(255,255,255,0.14)'/%3E%3Crect x='235' y='270' width='200' height='170' rx='18' fill='rgba(255,255,255,0.12)'/%3E%3Crect x='470' y='270' width='200' height='170' rx='18' fill='rgba(255,255,255,0.10)'/%3E%3Crect x='705' y='270' width='200' height='170' rx='18' fill='rgba(255,255,255,0.10)'/%3E%3Crect x='940' y='270' width='200' height='170' rx='18' fill='rgba(255,255,255,0.12)'/%3E%3Ctext x='205' y='170' fill='white' font-family='Arial' font-size='52' font-weight='700'%3ENight Experience%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.gallery-3 {
  background:
    linear-gradient(135deg, rgba(225,6,0,0.30), rgba(255,202,85,0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700' viewBox='0 0 900 700'%3E%3Crect width='900' height='700' fill='%23a30000'/%3E%3Ccircle cx='180' cy='180' r='70' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='450' cy='350' r='160' fill='rgba(255,255,255,0.08)'/%3E%3Ctext x='165' y='600' fill='white' font-family='Arial' font-size='52' font-weight='700'%3EMusic%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.gallery-4 {
  background:
    linear-gradient(135deg, rgba(225,6,0,0.26), rgba(255,255,255,0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700' viewBox='0 0 900 700'%3E%3Crect width='900' height='700' fill='%23800012'/%3E%3Crect x='170' y='150' width='560' height='330' rx='30' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='300' cy='550' r='34' fill='rgba(255,255,255,0.14)'/%3E%3Ccircle cx='450' cy='550' r='34' fill='rgba(255,255,255,0.14)'/%3E%3Ccircle cx='600' cy='550' r='34' fill='rgba(255,255,255,0.14)'/%3E%3Ctext x='170' y='110' fill='white' font-family='Arial' font-size='46' font-weight='700'%3ESocial Energy%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.gallery-5 {
  background:
    linear-gradient(135deg, rgba(225,6,0,0.30), rgba(255,202,85,0.12)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700' viewBox='0 0 900 700'%3E%3Crect width='900' height='700' fill='%23940000'/%3E%3Crect x='200' y='120' width='500' height='420' rx='28' fill='rgba(255,255,255,0.10)'/%3E%3Cpath d='M250 350 L450 210 L650 350 L450 490 Z' fill='rgba(255,255,255,0.14)'/%3E%3Ctext x='240' y='620' fill='white' font-family='Arial' font-size='46' font-weight='700'%3EInteractive Zone%3C/text%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

/* Trends */
.trend-card {
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--soft-shadow);
}

.trend-number {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffcbc6;
  letter-spacing: 0.16em;
}

.trend-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.trend-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.quote-box {
  text-align: center;
  padding: 44px 30px;
}

.quote-icon {
  font-size: 2.3rem;
  color: #ffd27c;
  display: inline-block;
  margin-bottom: 12px;
}

.quote-box blockquote {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
}

/* Summary */
.summary-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(225,6,0,0.22), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--soft-shadow);
}

.summary-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.summary-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-label {
  color: rgba(255,255,255,0.70);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 36px 0;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-icons span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-icons i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-visual {
    min-height: 580px;
  }

  .hero-panel {
    min-height: 520px;
  }

  .card-1 {
    right: 0;
  }

  .card-2 {
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 90px 0;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-panel {
    min-height: 500px;
  }

  .hero-mini-card {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .premium-card,
  .summary-card,
  .pillar-card,
  .experience-card,
  .trend-card {
    padding: 24px;
    border-radius: 24px;
  }

  .panel-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }

  .panel-overlay h3 {
    font-size: 1.35rem;
  }

  .hero-panel {
    min-height: 430px;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline-item {
    padding-left: 52px;
  }

  .timeline-dot {
    left: 7px;
  }

  .gallery-card {
    min-height: 300px;
  }

  .gallery-small {
    min-height: 220px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-section .display-3 {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .intro-strip {
    padding: 22px 20px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }
}
