/* ============================================
   LisbonStartups.com — Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --gold: #F2B830;
  --gold-light: #FFD166;
  --gold-dark: #D4961A;
  --charcoal: #1E1E1E;
  --charcoal-light: #2A2A2A;
  --night: #0D0D0D;
  --night-blue: #0A1628;
  --deep-blue: #0F2847;
  --azure: #1565C0;
  --azure-light: #42A5F5;
  --teal: #00B4D8;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --grey-100: #F0F0EC;
  --grey-200: #E0E0DC;
  --grey-300: #B0B0A8;
  --grey-400: #707068;
  --grey-600: #484844;
  --success: #34D399;
  --coral: #FF6B6B;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.20);
  --shadow-gold: 0 4px 30px rgba(242, 184, 48, 0.25);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border-light: rgba(255, 255, 255, 0.5);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

/* --- 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);
  background-color: var(--night-blue);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  /* Hide default cursor for custom cursor */
}

@media (max-width: 1024px) {
  body {
    cursor: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-light {
  background: var(--off-white);
  color: var(--charcoal);
}

.section-dark {
  background: var(--night-blue);
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--night-blue) 0%, var(--deep-blue) 50%, #0B1D3A 100%);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(242, 184, 48, 0.1);
  border: 1px solid rgba(242, 184, 48, 0.25);
  color: var(--gold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}

.section-light .section-badge {
  background: rgba(242, 184, 48, 0.12);
  border-color: rgba(242, 184, 48, 0.3);
  color: var(--gold-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.section-light .section-title {
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-300);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-light .section-subtitle {
  color: var(--grey-400);
}

.highlight {
  color: var(--gold);
}

.sushi-text {
  background: linear-gradient(135deg, #FF7F50 0%, #FFFFFF 50%, #FF7F50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(255, 127, 80, 0.4);
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  background-color: rgba(242, 184, 48, 0.05);
}

@media (max-width: 1024px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* --- Magnetic Effect Container --- */
.magnetic {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

.delay-4 {
  transition-delay: 400ms;
}

.delay-5 {
  transition-delay: 500ms;
}

.delay-6 {
  transition-delay: 600ms;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-md) 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: all var(--duration-fast) ease !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(242, 184, 48, 0.4);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(242, 184, 48, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(21, 101, 192, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(242, 184, 48, 0.1);
  border: 1px solid rgba(242, 184, 48, 0.2);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  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 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-4xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(242, 184, 48, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero decorative floating element */
.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat 6s ease-in-out infinite;
}

.hero-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(242, 184, 48, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.hero-orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
  bottom: 20%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -55%) scale(1.08);
  }
}

/* ============================================
   PARTNERS / LOGO TICKER
   ============================================ */
.partners {
  padding: var(--space-3xl) 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-3xl);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  transition: color var(--duration-normal) ease;
}

.ticker-item:hover {
  color: rgba(255, 255, 255, 0.6);
}

.ticker-item svg {
  width: 24px;
  height: 24px;
  margin-right: var(--space-sm);
  opacity: 0.4;
}

/* ============================================
   ABOUT / WHY LISBON
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 184, 48, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  background: rgba(242, 184, 48, 0.1);
}

.stat-card-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card-label {
  font-size: 0.9rem;
  color: var(--grey-300);
  line-height: 1.5;
}

/* ============================================
   SOFT LANDING
   ============================================ */
.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.landing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.landing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out);
}

.landing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.landing-card:hover::after {
  transform: scaleX(1);
}

.landing-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, rgba(242, 184, 48, 0.1), rgba(242, 184, 48, 0.05));
}

.landing-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.landing-card p {
  font-size: 0.92rem;
  color: var(--grey-400);
  line-height: 1.7;
}

.landing-card-tag {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-xs) var(--space-md);
  background: var(--grey-100);
  color: var(--grey-600);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.event-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 184, 48, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-width: 70px;
}

.event-date-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
}

.event-date-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.event-info p {
  font-size: 0.88rem;
  color: var(--grey-300);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.event-meta {
  display: flex;
  gap: var(--space-lg);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ============================================
   WORKSHOPS
   ============================================ */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--grey-200);
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.workshop-card-header {
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  position: relative;
  overflow: hidden;
}

.workshop-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(242, 184, 48, 0.08);
}

.workshop-card-provider {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.workshop-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.workshop-card-body {
  padding: var(--space-xl) var(--space-2xl);
}

.workshop-card-body p {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.workshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.workshop-tag {
  padding: var(--space-xs) var(--space-md);
  background: var(--grey-100);
  color: var(--grey-600);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

.workshop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.workshop-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
}

.workshop-spots {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
}

/* ============================================
   MENTORSHIP
   ============================================ */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.mentor-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.mentor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 184, 48, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mentor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
}

.mentor-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(242, 184, 48, 0.3);
}

.mentor-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.mentor-card .mentor-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.mentor-card .mentor-bio {
  font-size: 0.85rem;
  color: var(--grey-300);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.mentor-tag {
  padding: var(--space-xs) var(--space-md);
  background: rgba(242, 184, 48, 0.1);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ============================================
   INVESTMENT
   ============================================ */
.invest-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.invest-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.invest-feature {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.invest-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(242, 184, 48, 0.1);
  border: 1px solid rgba(242, 184, 48, 0.15);
}

.invest-feature h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.invest-feature p {
  font-size: 0.9rem;
  color: var(--grey-300);
  line-height: 1.6;
}

.invest-visual {
  position: relative;
}

.invest-chart {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(12px);
}

.invest-stage {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.invest-stage:last-child {
  border-bottom: none;
}

.invest-stage-label {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 100px;
}

.invest-stage-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.invest-stage-bar {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}

.invest-stage-bar.animated {
  transform: scaleX(1);
}

.invest-stage-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: right;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.3) brightness(0.7) contrast(1.2);
  transition: filter var(--duration-slow) ease;
}

.map-container:hover iframe {
  filter: saturate(0.6) brightness(0.8) contrast(1.1);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.1) 40%, rgba(10, 22, 40, 0.4) 100%);
  pointer-events: none;
}

.map-pin {
  position: absolute;
  top: 38%;
  left: 48%;
  z-index: 2;
  pointer-events: none;
}

.map-pin-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 20px rgba(242, 184, 48, 0.6);
  position: relative;
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(242, 184, 48, 0.6);
  }

  50% {
    box-shadow: 0 0 40px rgba(242, 184, 48, 0.9), 0 0 60px rgba(242, 184, 48, 0.3);
  }
}

.map-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(242, 184, 48, 0.4);
  border-radius: 50%;
  animation: ringExpand 2s ease-out infinite;
}

@keyframes ringExpand {
  0% {
    width: 16px;
    height: 16px;
    opacity: 1;
  }

  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

/* ============================================
   COMMUNITY / TESTIMONIALS
   ============================================ */
.testimonials-wrapper {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  text-align: center;
  padding: var(--space-2xl);
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

.testimonial-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--grey-400);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-200);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Community stats row */
.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-4xl);
}

.community-stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.community-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.community-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.community-stat-label {
  font-size: 0.82rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   NEWSLETTER CTA
   ============================================ */
.newsletter {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 48, 0.08) 0%, transparent 70%);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-2xl);
  font-size: 1.05rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--duration-fast) ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 184, 48, 0.15);
}

.newsletter-form button {
  padding: var(--space-md) var(--space-2xl);
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--duration-fast) ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--night);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  color: var(--grey-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-lg);
  max-width: 300px;
}

.footer-brand img {
  height: 36px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--grey-400);
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
  padding: 0 !important;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--grey-400);
}

.footer-bottom a {
  color: var(--grey-400) !important;
  padding: 0 !important;
}

.footer-bottom a:hover {
  color: var(--gold) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .invest-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    z-index: 999;
  }

  .nav-links.active a {
    font-size: 1.3rem;
    color: var(--white);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .community-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .events-grid,
  .workshops-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }

  .mentors-grid {
    grid-template-columns: 1fr;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }
}