/* ============================================
   ELEVATE COMMUNITY & CONFERENCE
   Modern Animated Website — Inspired by Canva Create
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette — Vibrant */
  --primary: #0b0b1a;
  --primary-light: #111133;
  --accent-1: #ff2d55;
  --accent-2: #0066ff;
  --accent-3: #7b2ff7;
  --accent-4: #ff4d6d;
  --accent-5: #00d4ff;
  --accent-6: #ffbe0b;

  /* Gradients — Punchy */
  --grad-hero: linear-gradient(135deg, #0b0b1a 0%, #111133 25%, #1a0a3e 50%, #2d0b5a 75%, #7b2ff7 100%);
  --grad-warm: linear-gradient(135deg, #ff2d55 0%, #ff4d6d 40%, #ffbe0b 100%);
  --grad-cool: linear-gradient(135deg, #0066ff 0%, #7b2ff7 50%, #00d4ff 100%);
  --grad-card: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  --grad-glow: radial-gradient(ellipse at center, rgba(255,45,85,0.2) 0%, transparent 70%);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7f7fb;
  --light-gray: #e4e4ee;
  --mid-gray: #5a5a72;
  --dark-gray: #2a2a3d;
  --black: #08080f;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(255,45,85,0.35);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-mid: 0.4s;
  --duration-slow: 0.8s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #090c2d;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--mid-gray);
}

.text-gradient {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cool {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: 1400px;
}

.container--narrow {
  max-width: 800px;
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.7);
}

.section--gray {
  background: var(--off-white);
}

/* --- Full-Width Photo Background Sections --- */
.section--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.section--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,26,0.7) 0%, rgba(11,11,26,0.55) 50%, rgba(11,11,26,0.8) 100%);
  z-index: 0;
}

.section--photo > * {
  position: relative;
  z-index: 1;
}

.section--photo p {
  color: rgba(255,255,255,0.85);
}

.section--photo .section-header__label {
  color: var(--accent-6);
}

.section--photo .section-header__title {
  color: var(--white);
}

.section--photo .section-header__desc {
  color: rgba(255,255,255,0.7);
}

.section--photo .card--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}

.section--photo .card--dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.section--photo-light {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section--photo-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.88) 100%);
  z-index: 0;
}

.section--photo-light > * {
  position: relative;
  z-index: 1;
}

.section--photo-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


.section--photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,26,0.75) 0%, rgba(11,11,26,0.5) 40%, rgba(11,11,26,0.65) 100%);
  z-index: 0;
}

.section--photo-hero .hero__bg,
.section--photo-hero .hero__content {
  position: relative;
  z-index: 1;
}

.section--gradient {
  background: var(--grad-hero);
  color: var(--white);
}

.section--gradient p {
  color: rgba(255,255,255,0.7);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--duration-mid) var(--ease-out);
  background: #080d2f;
}

.nav.scrolled {
  background: #080d2f;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  z-index: 1001;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

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

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-1);
  transition: width var(--duration-mid) var(--ease-out);
}

.nav__links a:hover {
  color: var(--white);
}

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

.nav__links a.active {
  color: var(--white);
}

.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: linear-gradient(135deg, #ff2d55 0%, #c2185b 100%) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast) var(--ease-out) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,45,85,0.45);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration-mid) var(--ease-out);
  border-radius: 2px;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--duration-fast) var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #ff2d55 0%, #c2185b 100%);
  color: var(--white);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,45,85,0.45);
}

.btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--accent-1);
  border: 2px solid var(--accent-1);
}

.btn--outline:hover {
  background: linear-gradient(135deg, #ff2d55 0%, #c2185b 100%);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--dark {
  background: var(--primary);
  color: var(--white);
}

.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--accent-1);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-3);
  bottom: -10%;
  left: -5%;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--accent-5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--space-2xl) var(--space-md);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(8px);
}

.hero__badge span {
  width: 8px;
  height: 8px;
  background: var(--accent-4);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal--left {
  transform: translateX(-60px);
}

.reveal--left.visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(60px);
}

.reveal--right.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal--scale.visible {
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform var(--duration-mid) var(--ease-spring), box-shadow var(--duration-mid) var(--ease-out);
  border: 1px solid var(--light-gray);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.card--gradient {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.1);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card__icon--red { background: rgba(255,45,85,0.12); color: var(--accent-1); }
.card__icon--blue { background: rgba(0,102,255,0.1); color: var(--accent-2); }
.card__icon--purple { background: rgba(123,47,247,0.1); color: var(--accent-3); }
.card__icon--teal { background: rgba(0,212,255,0.1); color: var(--accent-5); }
.card__icon--yellow { background: rgba(255,190,11,0.15); color: #e6a700; }

/* --- Grid Layouts --- */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-1);
  margin-bottom: var(--space-xs);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__desc {
  font-size: 1.1rem;
}

/* --- Team / Leadership --- */
.team-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto var(--space-md);
  border: 4px solid var(--light-gray);
  transition: border-color var(--duration-mid) var(--ease-out), transform var(--duration-mid) var(--ease-spring);
}

.team-card:hover .team-card__photo {
  border-color: var(--accent-1);
  transform: scale(1.05);
}

.team-card__name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  color: var(--accent-1);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Pricing Cards --- */
.pricing-card {
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.pricing-card--featured {
  border: 2px solid var(--accent-1);
  transform: scale(1.02);
}

.pricing-card--featured::before {
  content: 'Sold Out';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff2d55 0%, #c2185b 100%);
  color: var(--white);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  z-index: 1;
}

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-1);
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid-gray);
}

.pricing-card__desc {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.pricing-card__features {
  margin-bottom: var(--space-md);
}

.pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-1);
  flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark-gray);
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-item__question:hover {
  color: var(--accent-1);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--duration-mid) var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-mid) var(--ease-out), padding var(--duration-mid) var(--ease-out);
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  font-size: 1rem;
}

/* --- Stats / Numbers --- */
.stat {
  text-align: center;
  padding: var(--space-md);
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* --- Timeline / Schedule --- */
.schedule-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light-gray);
}

.schedule-item__time {
  min-width: 120px;
  font-weight: 700;
  color: var(--accent-1);
  font-size: 0.95rem;
  padding-top: 0.2rem;
}

.schedule-item__content h4 {
  margin-bottom: 0.25rem;
}

.schedule-item__content p {
  font-size: 0.95rem;
}

/* --- Sponsor Tiers --- */
.sponsor-tier {
  text-align: center;
  padding: var(--space-lg);
}

.sponsor-tier__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.sponsor-tier__icon--premiere {
  background: linear-gradient(135deg, #ffbe0b, #ff2d55);
  color: var(--white);
}

.sponsor-tier__icon--signature {
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  color: var(--white);
}

.sponsor-tier__icon--contributing {
  background: linear-gradient(135deg, #a78bfa, #7b2ff7);
  color: var(--white);
}

.sponsor-tier__price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.sponsor-tier__name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-1);
  margin-bottom: var(--space-sm);
}

.sponsor-tier__features {
  text-align: left;
}

.sponsor-tier__features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}

.sponsor-tier__features li:last-child {
  border-bottom: none;
}

/* --- Podcast Section --- */
.podcast-player {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--white);
}

.podcast-player__art {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-player__info h3 {
  margin-bottom: 0.5rem;
}

.podcast-player__info p {
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}

.podcast-platforms {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.podcast-platforms a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--white);
  transition: all var(--duration-fast) var(--ease-out);
  border: 1px solid rgba(255,255,255,0.15);
}

.podcast-platforms a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background: #080d2f;
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.5);
}

.footer__links a {
  display: block;
  padding: 0.35rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- Marquee / Scrolling Text --- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-md) 0;
}

.marquee__inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  padding: 0 var(--space-lg);
  opacity: 0.15;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Parallax Shapes --- */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape--circle {
  border-radius: 50%;
}

.shape--gradient-1 {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-4));
  opacity: 0.1;
}

.shape--gradient-2 {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-5));
  opacity: 0.1;
}

/* --- Ticker / Conference Banner --- */
.ticker {
  background: var(--accent-1);
  color: var(--white);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__inner {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.ticker__item {
  padding: 0 var(--space-lg);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker__item span {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.5;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .hero__actions {
  position: relative;
  z-index: 1;
}

/* --- Image with Gradient Overlay --- */
.img-overlay {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
}

.img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

/* --- Pill Tags --- */
.pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.pill--red { background: rgba(255,45,85,0.12); color: var(--accent-1); }
.pill--blue { background: rgba(0,102,255,0.1); color: var(--accent-2); }
.pill--purple { background: rgba(123,47,247,0.1); color: var(--accent-3); }

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.5rem;
  transition: color var(--duration-fast);
}

.mobile-menu a:hover {
  color: var(--accent-1);
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--space-2xl) + 60px) 0 var(--space-xl);
  background: var(--grad-hero);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-sm);
}

.page-header p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .split--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .podcast-player { flex-direction: column; text-align: center; }
  .podcast-platforms { justify-content: center; }
}

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .hero__content { padding: calc(var(--space-xl) + 40px) var(--space-sm) var(--space-xl); }
  .schedule-item { flex-direction: column; gap: 0.5rem; }
  .pricing-card--featured { transform: scale(1); }
  section { padding: var(--space-lg) 0; }
}

@media (max-width: 479px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .stat__number { font-size: 2.5rem; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-lg { margin-top: var(--space-lg); }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
