/* ==========================================================================
   YAJAT.EXE — THE ULTIMATE INSTAGRAM MULTIVERSE (WITH PROFILE AVATAR)
   ========================================================================== */

:root {
  /* Color Palette - Rich Light Theme */
  --bg-gradient: linear-gradient(135deg, #fdfbf7 0%, #eef2ff 35%, #fdf2f8 70%, #f0fdf4 100%);
  --bg-card: #ffffff;
  --bg-card-subtle: #f8fafc;
  --border-card: rgba(15, 23, 42, 0.09);
  --border-card-hover: rgba(2, 132, 199, 0.4);

  /* Accents */
  --accent-blue: #0284c7;
  --accent-cyan: #06b6d4;
  --accent-porsche: #e11d48;
  --accent-orange: #ea580c;
  --accent-green: #059669;
  --accent-purple: #7c3aed;
  --accent-gold: #d97706;

  /* Text Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #94a3b8;

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Rich Shadows */
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.1), 0 8px 16px rgba(2, 132, 199, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Ambient Floating Light Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.45;
  animation: floatOrb 22s infinite alternate ease-in-out;
}

.orb-1 {
  top: 5%; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
}

.orb-2 {
  bottom: 15%; right: 5%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
  animation-delay: -7s;
}

.orb-3 {
  top: 45%; left: 45%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-20px, 30px) scale(0.92); }
}

/* Harvey Specter Luxury Mode Overlay */
body.harvey-mode {
  background: #0f172a !important;
  color: #ffffff !important;
  background-image: none !important;
}

body.harvey-mode .hero-title, body.harvey-mode .section-heading {
  color: #f59e0b !important;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-main);
}

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

/* Canvas Backgrounds */
#bg-canvas, #spidey-canvas, #confetti-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: -1;
}
#spidey-canvas { z-index: 9998; }
#confetti-canvas { z-index: 9999; }

/* Floating Fun Shapes */
.floating-shape {
  position: fixed;
  font-size: 2.2rem;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  animation: floatSpin 14s infinite ease-in-out alternate;
}
.shape-1 { top: 15%; left: 6%; animation-delay: 0s; }
.shape-2 { top: 60%; right: 6%; animation-delay: -3s; }
.shape-3 { top: 35%; right: 10%; animation-delay: -6s; }
.shape-4 { bottom: 15%; left: 8%; animation-delay: -9s; }

@keyframes floatSpin {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(180deg) scale(1.15); }
  100% { transform: translateY(20px) rotate(360deg) scale(0.9); }
}

/* Custom Cursor Sparkle */
.cursor-dot, .cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.15s ease-out;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-porsche); }
.cursor-outline { width: 36px; height: 36px; border: 2px solid rgba(225, 29, 72, 0.3); }

/* Porsche Racing Banner Overlay */
.porsche-racing-container {
  position: fixed;
  top: 18%; left: -450px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  z-index: 10001;
  pointer-events: none;
  border: 2px solid var(--accent-porsche);
}

.porsche-racing-container.rev {
  animation: porscheRace 2.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes porscheRace {
  0% { left: -450px; transform: scale(0.8); }
  50% { left: 45vw; transform: scale(1.1); }
  100% { left: 110vw; transform: scale(1.3); }
}

/* Bat-Signal Overlay */
.bat-signal-container {
  position: fixed;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #0f172a;
  color: #f59e0b;
  padding: 24px 40px;
  border-radius: 24px;
  border: 3px solid #f59e0b;
  text-align: center;
  z-index: 10003;
  pointer-events: none;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.5);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bat-signal-container.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.batsignal-icon { font-size: 3.5rem; }
.batsignal-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; }

/* Spider-Man Swinger */
.spidey-swinger-container {
  position: fixed;
  top: -100px; right: 10%;
  font-size: 3.5rem;
  z-index: 10002;
  pointer-events: none;
}

.spidey-swinger-container.swing {
  animation: spideySwing 2.5s ease-in-out forwards;
}

@keyframes spideySwing {
  0% { top: -100px; transform: rotate(0deg); }
  40% { top: 40vh; transform: rotate(180deg) scale(1.3); }
  70% { top: 60vh; transform: rotate(360deg) scale(1.1); }
  100% { top: 110vh; transform: rotate(540deg) scale(0.8); }
}

/* Grass Growth Container */
.grass-container {
  position: fixed;
  bottom: 0; left: 0; width: 100vw; height: 0;
  z-index: 9997;
  pointer-events: none;
  display: flex; justify-content: space-around;
  align-items: flex-end;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grass-container.grow { height: 180px; }

.grass-blade {
  width: 14px;
  background: linear-gradient(to top, #047857, #10b981, #34d399);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  animation: swayGrass 3s infinite ease-in-out alternate;
}

@keyframes swayGrass {
  0% { transform: rotate(-3deg); }
  100% { transform: rotate(5deg); }
}

/* Top Quick Control Bar */
.top-quick-bar {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 100;
  display: flex; gap: 10px;
}

.top-btn {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.top-btn:hover {
  border-color: var(--accent-porsche);
  color: var(--accent-porsche);
  transform: translateY(-2px);
}

.insta-link-btn { color: #e1306c; border-color: rgba(225, 48, 108, 0.2); }
.insta-link-btn:hover { color: #fff; background: #e1306c; border-color: #e1306c; }

/* Container & Layout */
.container {
  width: 90%; max-width: 950px;
  margin: 0 auto;
}

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

.section-meta { margin-bottom: 40px; }

.meta-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-porsche);
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 700;
}

.section-heading {
  font-size: 2.75rem;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.meta-sub { font-size: 1rem; color: var(--text-muted); }

/* Hero Grid Layout with Profile Avatar */
.hero-section {
  min-height: 90vh;
  display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.hero-avatar-col {
  display: flex;
  justify-content: center;
}

.hero-avatar-frame {
  position: relative;
  width: 250px;
  height: 270px;
  border-radius: 32px;
  padding: 6px;
  background: linear-gradient(135deg, #e11d48, #0284c7, #f59e0b);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.2), 0 5px 15px rgba(2, 132, 199, 0.15);
  transition: var(--transition-spring);
}

.hero-avatar-frame:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 25px 45px rgba(225, 29, 72, 0.3), 0 10px 25px rgba(2, 132, 199, 0.25);
}

.hero-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  border: 3px solid #ffffff;
  display: block;
}

.floating-avatar-badge {
  position: absolute;
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.1);
  padding: 6px 12px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.badge-porsche {
  top: -12px; right: -12px;
  color: var(--accent-porsche);
  border-color: rgba(225, 29, 72, 0.3);
}

.badge-spidey {
  bottom: 20px; left: -18px;
  font-size: 1.1rem;
}

.badge-suits {
  bottom: -12px; right: 10px;
  color: var(--accent-gold);
  border-color: rgba(217, 119, 6, 0.3);
}

.hero-content {
  display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
}

.comment-tag {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent-blue);
  background: #e0f2fe;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(2, 132, 199, 0.25);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-title {
  font-size: 4.2rem;
  letter-spacing: -2px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero-tags-pill {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-porsche);
  margin-bottom: 16px;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 32px;
}

.live-status-box {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
}

.status-prefix { color: var(--accent-blue); font-weight: 700; }
.status-text { color: var(--text-main); font-style: italic; }

.rpm-widget {
  display: flex; gap: 24px; flex-wrap: wrap;
  background: #ffffff;
  border: 2px solid rgba(225, 29, 72, 0.2);
  padding: 14px 24px; border-radius: 16px;
  margin-bottom: 40px; width: 100%;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.08);
}

.rpm-item { display: flex; gap: 8px; font-family: var(--font-mono); font-size: 0.85rem; }
.rpm-label { color: var(--text-muted); }
.rpm-value { color: var(--accent-porsche); font-weight: 700; }

.hero-scroll-hint {
  font-family: var(--font-mono);
  font-size: 0.85rem; color: var(--text-subtle);
  animation: pulseBounce 2s infinite;
}

@keyframes pulseBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Interest Constellation Bubbles */
.bubbles-cloud {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}

.bubble-node {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.09);
  padding: 14px 26px; border-radius: 9999px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--text-main); cursor: pointer;
  transition: var(--transition-spring);
  box-shadow: var(--shadow-card);
}

.bubble-node:hover {
  transform: translateY(-6px) scale(1.08);
  border-color: var(--accent-porsche);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.18);
  background: #ffffff;
}

.node-porsche { border-color: rgba(225, 29, 72, 0.35); }

/* YAJAT.EXE Section */
.exe-card {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.exe-header {
  background: #0f172a;
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.exe-title {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: #94a3b8; margin-left: 8px;
}

.exe-body { padding: 30px; display: flex; flex-direction: column; gap: 20px; }

.stat-bar-item { display: flex; flex-direction: column; gap: 6px; }

.stat-bar-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700;
  color: var(--text-main);
}

.stat-progress-track {
  width: 100%; height: 10px; background: #e2e8f0;
  border-radius: 5px; overflow: hidden;
}

.stat-progress-fill {
  height: 100%; background: var(--accent-blue);
  border-radius: 5px; transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-progress-fill.porsche-fill { background: var(--accent-porsche); }
.stat-progress-fill.suits-fill { background: #0f172a; }
.stat-progress-fill.warning { background: var(--accent-orange); }
.stat-progress-fill.low { background: #94a3b8; }
.stat-progress-fill.overflow { background: linear-gradient(90deg, #ef4444, #ea580c, #0284c7); }

.overflow-text { color: #e11d48; animation: blinkFast 1s infinite; }

@keyframes blinkFast {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Quotes Grid */
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.quote-box {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: var(--transition-spring);
  box-shadow: var(--shadow-card);
}

.quote-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-hover);
}

.quote-box.highlight { border-color: var(--accent-porsche); }
.quote-box.theme-quote { border-color: var(--accent-blue); background: #e0f2fe; }

.quote-content {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 800; line-height: 1.35; margin-bottom: 12px;
}

.quote-sub { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }

.harvey-action-box { margin-top: 40px; }

.harvey-btn {
  background: #0f172a;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 14px 28px; border-radius: 9999px;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: var(--transition-spring);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.2);
}

.harvey-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--accent-gold); color: #ffffff;
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
}

.harvey-response {
  margin-top: 16px; font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800; color: var(--accent-gold);
  font-style: italic; min-height: 30px;
}

/* Quiz Section */
.quiz-card {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}

.quiz-progress-bar {
  position: absolute; top: 0; left: 0; width: 100%; height: 6px;
  background: #e2e8f0;
}

.quiz-progress-fill {
  height: 100%; background: var(--accent-blue);
  transition: width 0.4s ease;
}

.quiz-q-num {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--accent-porsche); margin-bottom: 12px; font-weight: 700;
}

.quiz-q-title { font-size: 1.6rem; margin-bottom: 24px; }

.quiz-options { display: flex; flex-direction: column; gap: 12px; }

.quiz-opt-btn {
  background: #f8fafc;
  border: 2px solid rgba(15, 23, 42, 0.08);
  padding: 16px 24px; border-radius: 14px;
  color: var(--text-main); font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; text-align: left;
  cursor: pointer; transition: var(--transition-fast);
}

.quiz-opt-btn:hover {
  background: #e0f2fe;
  border-color: var(--accent-blue);
  transform: translateX(6px);
}

.quiz-results { text-align: center; padding: 20px 0; }
.quiz-score-badge { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--accent-blue); margin-bottom: 8px; }
.quiz-result-title { font-size: 2rem; margin-bottom: 8px; }
.quiz-result-sub { color: var(--text-muted); margin-bottom: 24px; font-size: 1.1rem; }

.quiz-retry-btn {
  background: var(--text-main); color: #ffffff;
  border: none; padding: 12px 28px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition-spring);
}

.quiz-retry-btn:hover { transform: scale(1.05); background: var(--accent-blue); }

/* Overthinking Simulator */
.sim-card {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-card);
}

.sim-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }

.sim-btn {
  background: var(--accent-orange); color: #ffffff;
  border: none; padding: 14px 32px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
  cursor: pointer; transition: var(--transition-spring);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

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

.sim-log-box {
  margin-top: 24px; font-family: var(--font-mono);
  font-size: 0.95rem; color: var(--accent-blue);
  min-height: 60px; display: flex; flex-direction: column; gap: 8px;
}

/* DO NOT CLICK Button Section */
.do-not-click-wrapper { margin-bottom: 20px; }

.do-not-click-btn {
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff; border: 4px solid #fda4af;
  padding: 20px 44px; border-radius: 9999px;
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  cursor: pointer; transition: var(--spring-transition);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.4);
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(225, 29, 72, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 15px 40px rgba(225, 29, 72, 0.6); }
}

.do-not-click-btn:hover { transform: scale(1.1) rotate(-2deg); }

.chaos-log {
  font-family: var(--font-mono); font-size: 1.1rem;
  font-weight: 800; color: var(--accent-porsche); min-height: 30px;
}

/* Easter Hint Section */
.easter-hint-card {
  background: #ffffff;
  border: 2px dashed rgba(15, 23, 42, 0.12);
  padding: 20px; border-radius: 16px;
  color: var(--text-muted); font-size: 0.9rem;
}

.hint-tag { color: var(--accent-gold); font-weight: 800; display: block; margin-bottom: 6px; }
.code-tag { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; color: var(--accent-blue); font-weight: 700; }

/* Ending Section */
.ending-section { padding: 90px 0; }
.ending-title { font-size: 3rem; margin-bottom: 8px; }
.ending-sub { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 32px; }

.touch-grass-btn {
  background: #047857; color: #fff; border: 2px solid #10b981;
  padding: 14px 32px; border-radius: 9999px;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: var(--spring-transition);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.touch-grass-btn:hover { transform: translateY(-3px) scale(1.05); background: #10b981; }

.footer-credit { margin-top: 60px; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-subtle); }

/* Interest Modal */
.interest-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(12px);
  z-index: 10000; align-items: center; justify-content: center;
}

.interest-modal.active { display: flex; }

.modal-card {
  background: #ffffff; border: 3px solid var(--accent-porsche);
  border-radius: 24px; padding: 36px; max-width: 440px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.8rem;
  color: var(--text-muted); cursor: pointer;
}

.modal-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.modal-title { font-size: 1.8rem; margin-bottom: 10px; color: var(--accent-porsche); }
.modal-body { font-size: 1.1rem; color: var(--text-main); font-weight: 700; }

/* Responsive Mobile Layout Adjustments */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-avatar-col {
    justify-content: center;
  }
  .hero-avatar-frame {
    width: 220px;
    height: 240px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-title { font-size: 2.8rem; }
  .hero-tags-pill { font-size: 1.1rem; }
  .quotes-grid { grid-template-columns: 1fr; }
  .top-quick-bar { top: 10px; right: 10px; }
  .section-heading { font-size: 2.2rem; }
}
