/* Em Dash Optimizer Landing Page */
* { box-sizing: border-box; }

/* Same color scheme as plugin */
:root {
  --bg: #0b0b0b;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
  --panel: #121212;
  --border: #1f1f1f;
  --accent: #f7ff3c; /* lemon */
  --accent-ink: #0d0d0d;
  --hover: #2c2c2c;
  --shadow: rgba(0, 0, 0, 0.5);
  
  /* Font families - prioritizing Futura */
  --font-primary: "Futura", ui-sans-serif, system-ui, -apple-system, "Avenir Next", Inter, sans-serif;
  --font-mono: "SF Mono", Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: 
    radial-gradient(ellipse at 30% 10%, rgba(247, 255, 60, 0.15) 0%, transparent 25%),
    radial-gradient(ellipse at 80% 90%, rgba(247, 255, 60, 0.1) 0%, transparent 25%),
    radial-gradient(ellipse at 50% 50%, rgba(11, 11, 11, 0.9) 0%, var(--bg) 40%),
    linear-gradient(135deg, var(--bg) 0%, rgba(18, 18, 18, 0.95) 50%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--fg);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== ANIMATED BACKGROUND LAYERS ===== */
.background-layers {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    conic-gradient(from 0deg at 30% 30%, rgba(247, 255, 60, 0.08) 0deg, transparent 60deg, transparent 300deg, rgba(247, 255, 60, 0.05) 360deg),
    conic-gradient(from 180deg at 80% 70%, rgba(247, 255, 60, 0.06) 0deg, transparent 60deg, transparent 300deg, rgba(247, 255, 60, 0.03) 360deg),
    linear-gradient(
      135deg,
      rgba(247, 255, 60, 0.04) 0%,
      transparent 20%,
      transparent 80%,
      rgba(247, 255, 60, 0.02) 100%
    );
  animation: meshMove 25s ease-in-out infinite;
  filter: blur(0.5px);
}

@keyframes meshMove {
  0%, 100% { 
    background-position: 0% 0%;
    transform: scale(1) rotate(0deg);
  }
  33% { 
    background-position: 100% 100%;
    transform: scale(1.05) rotate(1deg);
  }
  66% { 
    background-position: 0% 100%;
    transform: scale(0.95) rotate(-1deg);
  }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(247, 255, 60, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(247, 255, 60, 0.1);
  animation: floatUp 15s linear infinite;
  will-change: transform;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 22s;
}

.particle:nth-child(3) {
  left: 35%;
  animation-delay: 4s;
  animation-duration: 16s;
}

.particle:nth-child(4) {
  left: 50%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.particle:nth-child(5) {
  left: 65%;
  animation-delay: 8s;
  animation-duration: 19s;
}

.particle:nth-child(6) {
  left: 75%;
  animation-delay: 10s;
  animation-duration: 17s;
}

.particle:nth-child(7) {
  left: 85%;
  animation-delay: 12s;
  animation-duration: 21s;
}

.particle:nth-child(8) {
  left: 95%;
  animation-delay: 14s;
  animation-duration: 15s;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  50% {
    transform: translateY(50vh) translateX(-20px) scale(1.2);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(10px) scale(0.8);
  }
  100% {
    transform: translateY(-10vh) translateX(0px) scale(0);
    opacity: 0;
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(247, 255, 60, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(247, 255, 60, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(247, 255, 60, 0.03) 0%, transparent 30%),
    radial-gradient(ellipse at 90% 60%, rgba(247, 255, 60, 0.025) 0%, transparent 35%),
    linear-gradient(45deg, rgba(247, 255, 60, 0.01) 0%, transparent 50%, transparent 50%, rgba(247, 255, 60, 0.015) 100%);
  animation: gradientShift 30s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.cursor-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(247, 255, 60, 0.03) 0%,
    rgba(247, 255, 60, 0.01) 30%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow {
    opacity: 1;
  }
}

.container {
  width: 100%;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 220px 0 100px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(247, 255, 60, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 700px;
  z-index: 1;
  position: relative;
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .brand {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

.logo {
  width: 56px;
  height: 56px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(247, 255, 60, 0.3));
  flex-shrink: 0;
}

.title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 40%, var(--fg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  line-height: 1.3;
  text-shadow: 0 0 40px rgba(247, 255, 60, 0.2);
}

.title-line2 {
  color: var(--accent);
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: var(--accent);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subtitle {
  font-size: 1.5rem;
  color: var(--muted);
  margin: 24px 0;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.description {
  font-size: 1.25rem;
  color: var(--fg);
  margin: 32px 0 48px;
  opacity: 0.85;
  line-height: 1.6;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(247, 255, 60, 0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.2),
    0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: all 0.4s ease;
  animation: gentleFloat 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  max-width: 450px;
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 255, 60, 0.3), transparent);
  border-radius: 16px 16px 0 0;
}

.floating-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(247, 255, 60, 0.02), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.floating-card:hover {
  transform: translateY(-6px) scale(1.02);
  /* border-color: rgba(247, 255, 60, 0.3); */
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 12px 24px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(247, 255, 60, 0.15),
    0 0 0 1px rgba(247, 255, 60, 0.1);
}

@keyframes gentleFloat {
  0%, 100% { 
    transform: translateY(0px);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.3),
      0 8px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(247, 255, 60, 0.1);
  }
  50% { 
    transform: translateY(-8px);
    box-shadow: 
      0 28px 56px rgba(0, 0, 0, 0.35),
      0 12px 24px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(247, 255, 60, 0.1);
  }
}

.card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.code-preview {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 0 20px;
}

.code-preview .comment {
  color: var(--muted);
  font-style: italic;
  display: block;
  margin-bottom: 8px;
}

.code-preview .before-text {
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}

.code-preview .after-text {
  color: var(--fg);
  display: block;
  margin-top: 4px;
}

.code-preview .highlight-dash {
  color: #ff6b6b;
  font-weight: bold;
  background: rgba(255, 107, 107, 0.1);
  padding: 0 2px;
  border-radius: 3px;
}

.code-preview .highlight-comma {
  color: #4ecdc4;
  font-weight: bold;
  background: rgba(78, 205, 196, 0.1);
  padding: 0 2px;
  border-radius: 3px;
}

.code-preview .arrow-divider {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin: 4px 0;
  font-weight: bold;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  min-width: 160px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e6ed00);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  box-shadow: 
    0 8px 24px rgba(247, 255, 60, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-accent:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 40px rgba(247, 255, 60, 0.4),
    0 8px 16px rgba(247, 255, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(18, 18, 18, 0.6);
  color: var(--fg);
  border: 1px solid rgba(247, 255, 60, 0.2);
  backdrop-filter: blur(20px);
}

.btn-outline:hover {
  background: rgba(247, 255, 60, 0.1);
  border-color: rgba(247, 255, 60, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.2),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  color: var(--accent);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
}

/* Sections - Enhanced Typography */
section {
  padding: 120px 20px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  text-align: center;
  margin: 0 0 80px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 50%, var(--fg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(247, 255, 60, 0.1);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 1px;
}

.section-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--muted);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Premium Features Section */
.features {
  padding: 120px 20px;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(247, 255, 60, 0.3), transparent);
  z-index: 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 80px 0;
  position: relative;
}

.feature-item.left {
  flex-direction: row;
}

.feature-item.right {
  flex-direction: row-reverse;
}

.feature-number {
  font-size: 4rem;
  font-weight: 200;
  color: var(--accent);
  opacity: 1;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(247, 255, 60, 0.4));
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  text-shadow: 0 0 15px rgba(247, 255, 60, 0.3);
}

.feature-content {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 255, 60, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.feature-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 255, 60, 0.3));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature-content:hover {
  /* border-color: rgba(247, 255, 60, 0.3); */
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.1),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  transform: translateY(-8px);
}

.feature-content:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(247, 255, 60, 0.2));
}

.feature-screenshot {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(247, 255, 60, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.feature-screenshot:hover .feature-image {
  transform: scale(1.02);
}

.feature-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.feature-content p {
  color: var(--muted);
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== USE CASES CAROUSEL ===== */
.use-cases {
  padding: 80px 20px;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 50%, var(--fg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

.section-header .section-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--muted);
  margin: 0 auto;
  max-width: 700px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  padding: 0 20px;
}

.use-case-card {
  flex: 0 0 420px;
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 255, 60, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 255, 60, 0.8), var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.use-case-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(247, 255, 60, 0.02), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.use-case-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.4),
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.2),
    inset 0 2px 0 rgba(247, 255, 60, 0.15);
  /* border-color: rgba(247, 255, 60, 0.3); */
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card:hover::after {
  opacity: 1;
}

.card-visual {
  height: 320px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.8) 0%, rgba(18, 18, 18, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(247, 255, 60, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.use-case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-image {
  transform: scale(1.05);
}

.mockup {
  width: 100%;
  max-width: 320px;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 255, 60, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.1),
    inset 0 1px 0 rgba(247, 255, 60, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.mockup:hover {
  transform: scale(1.05);
  /* border-color: rgba(247, 255, 60, 0.3); */
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(247, 255, 60, 0.15),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
}

.mockup-header {
  background: var(--panel);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-header::before {
  content: '';
  display: flex;
  gap: 4px;
}

.mockup-header::before {
  content: '● ● ●';
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 2px;
}

.mockup-title {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-left: auto;
}

.mockup-content {
  padding: 16px 20px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.before-text {
  margin-bottom: 8px;
}

.after-text {
  margin-top: 8px;
}

.highlight-bad {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.highlight-good {
  background: rgba(247, 255, 60, 0.1);
  color: var(--accent);
  padding: 2px 4px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.arrow {
  text-align: center;
  color: var(--accent);
  font-size: 0.875rem;
  margin: 4px 0;
}

.improvement-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 0.75rem;
  margin: 6px 0;
  font-weight: bold;
}

/* ===== SPECIFIC MOCKUP STYLES ===== */

/* Resume Mockup */
.resume-header {
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid rgba(247, 255, 60, 0.2);
  margin-bottom: 12px;
}

.resume-header h4 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.contact-info {
  font-size: 0.6rem;
  color: var(--muted);
}

.resume-section {
  margin-bottom: 10px;
}

.resume-section h5 {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-entry {
  padding: 8px;
  background: rgba(11, 11, 11, 0.3);
  border-radius: 6px;
}

.job-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.job-company {
  font-size: 0.6rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.job-description {
  font-size: 0.6rem;
}

.skills-list {
  font-size: 0.6rem;
  color: var(--muted);
}

/* Blog Mockup */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(247, 255, 60, 0.1);
  margin-bottom: 10px;
}

.blog-nav {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent);
}

.blog-date {
  font-size: 0.55rem;
  color: var(--muted);
}

.blog-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.2;
}

.blog-author {
  font-size: 0.6rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-content {
  margin-bottom: 10px;
  padding: 0 12px;
}

.blog-paragraph {
  font-size: 0.65rem;
  line-height: 1.3;
  margin: 4px 0;
}

.blog-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(247, 255, 60, 0.1);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.5rem;
}

/* Social Media Mockup */
.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  margin-bottom: 8px;
}

.social-profile {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-pic {
  width: 20px;
  height: 20px;
  background: rgba(247, 255, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.username {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--fg);
}

.timestamp {
  font-size: 0.5rem;
  color: var(--muted);
}

.social-menu {
  font-size: 0.8rem;
  color: var(--muted);
}

.social-content {
  padding: 0 12px;
  margin-bottom: 8px;
}

.social-text {
  font-size: 0.65rem;
  line-height: 1.3;
  margin: 4px 0;
}

.social-actions {
  display: flex;
  justify-content: space-around;
  padding: 6px 8px;
  border-top: 1px solid rgba(247, 255, 60, 0.1);
}

.action {
  font-size: 0.6rem;
  color: var(--muted);
}

/* Academic Paper Mockup */
.paper-header {
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid rgba(247, 255, 60, 0.1);
  margin-bottom: 10px;
}

.paper-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.2;
}

.paper-authors {
  font-size: 0.6rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.paper-journal {
  font-size: 0.55rem;
  color: var(--accent);
}

.paper-section {
  margin-bottom: 10px;
}

.paper-section h6 {
  margin: 0 0 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
}

.paper-content {
  padding: 0 8px;
}

.paper-paragraph {
  font-size: 0.6rem;
  line-height: 1.4;
  margin: 4px 0;
  text-align: justify;
}

.keywords {
  font-size: 0.6rem;
  color: var(--muted);
  font-style: italic;
}

/* Business Report Mockup */
.report-header {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid rgba(247, 255, 60, 0.1);
  margin-bottom: 8px;
}

.company-logo {
  font-size: 1rem;
  margin-bottom: 4px;
}

.report-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2px;
}

.report-date {
  font-size: 0.6rem;
  color: var(--muted);
}

.report-section {
  margin-bottom: 8px;
}

.report-section h6 {
  margin: 0 0 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
}

.chart-placeholder {
  background: rgba(247, 255, 60, 0.05);
  border: 1px dashed rgba(247, 255, 60, 0.2);
  padding: 12px;
  text-align: center;
  font-size: 0.6rem;
  color: var(--muted);
  border-radius: 4px;
  margin-bottom: 8px;
}

.report-content {
  padding: 0 8px;
}

.metric-row {
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.metric-text {
  font-size: 0.6rem;
  line-height: 1.3;
  margin: 4px 0;
}

.report-footer {
  border-top: 1px solid rgba(247, 255, 60, 0.1);
  padding: 6px 8px;
  margin-top: 8px;
}

.approval {
  font-size: 0.55rem;
  color: var(--muted);
  text-align: right;
}

/* Email Mockup */
.email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: rgba(247, 255, 60, 0.05);
  border-bottom: 1px solid rgba(247, 255, 60, 0.1);
  margin-bottom: 8px;
}

.email-toolbar {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
}

.email-actions {
  font-size: 0.6rem;
  letter-spacing: 4px;
}

.email-fields {
  margin-bottom: 8px;
}

.email-field {
  display: flex;
  padding: 2px 8px;
  font-size: 0.6rem;
}

.field-label {
  font-weight: 600;
  color: var(--muted);
  width: 30px;
  flex-shrink: 0;
}

.field-value {
  color: var(--fg);
}

.email-body {
  padding: 0 8px;
}

.email-content p {
  font-size: 0.6rem;
  line-height: 1.4;
  margin: 4px 0;
}

.email-paragraph {
  font-size: 0.6rem;
  line-height: 1.3;
  margin: 4px 0;
}

.email-attachment {
  background: rgba(247, 255, 60, 0.05);
  border: 1px solid rgba(247, 255, 60, 0.2);
  padding: 6px 8px;
  margin-top: 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  color: var(--accent);
}

/* Highlight improvements for all mockups */
.before-highlight {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 2px 4px;
  border-radius: 3px;
}

.after-highlight {
  background: rgba(247, 255, 60, 0.15);
  color: var(--accent);
  padding: 2px 4px;
  border-radius: 3px;
}

.card-content {
  padding: 24px;
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--fg);
}

.card-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(247, 255, 60, 0.3);
}

.nav-dots {
  display: flex;
  gap: 8px;
}

.nav-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(247, 255, 60, 0.4);
}

.nav-dots .dot:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* Demo Section - Premium Split Screen Design */
.demo {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(11, 11, 11, 0.95) 100%);
}

.demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(247, 255, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.demo .section-title {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 80px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 50%, var(--fg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
  letter-spacing: -0.02em;
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo-before, .demo-after {
  background: rgba(18, 18, 18, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 255, 60, 0.15);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 12px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-before::after, .demo-after::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(247, 255, 60, 0.02), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.demo-before:hover, .demo-after:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 16px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(247, 255, 60, 0.2),
    inset 0 2px 0 rgba(247, 255, 60, 0.15);
  /* border-color: rgba(247, 255, 60, 0.3); */
}

.demo-before:hover::after, .demo-after:hover::after {
  opacity: 1;
}

.demo-before::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, rgba(239, 68, 68, 0.8), #dc2626);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.demo-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 255, 60, 0.8), #e6ed00);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 8px rgba(247, 255, 60, 0.3);
}

.demo-before h4, .demo-after h4 {
  margin: 0 0 24px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}

.demo-before h4 {
  color: #fca5a5;
}

.demo-after h4 {
  color: var(--accent);
}

.demo-before h4::after, .demo-after h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  border-radius: 1px;
}

.demo-before h4::after {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.demo-after h4::after {
  background: linear-gradient(90deg, var(--accent), #e6ed00);
}

.demo-text {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  background: rgba(11, 11, 11, 0.6);
  border: none;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  text-align: left;
}

.demo-text p {
  margin: 0 0 16px 0;
  padding: 0 8px;
}

.demo-text p:last-child {
  margin-bottom: 0;
}

.highlight-dash {
  color: #ff6b6b;
  font-weight: bold;
  background: rgba(255, 107, 107, 0.1);
  padding: 0 2px;
  border-radius: 3px;
}

.highlight-comma {
  color: #4ecdc4;
  font-weight: bold;
  background: rgba(78, 205, 196, 0.1);
  padding: 0 2px;
  border-radius: 3px;
}

.demo-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(247, 255, 60, 0.05) 0%, transparent 50%);
  border-radius: 12px;
  pointer-events: none;
}

.demo-arrow {
  font-size: 3rem;
  color: var(--accent);
  font-weight: 300;
  filter: drop-shadow(0 4px 8px rgba(247, 255, 60, 0.3));
  transition: all 0.5s ease;
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 255, 60, 0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.demo-arrow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(247, 255, 60, 0.05), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

.demo-arrow:hover {
  transform: scale(1.1) rotate(360deg);
  filter: drop-shadow(0 6px 16px rgba(247, 255, 60, 0.5));
  border-color: rgba(247, 255, 60, 0.4);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(247, 255, 60, 0.2),
    inset 0 2px 0 rgba(247, 255, 60, 0.2);
}

/* Installation - Premium Timeline Design */
.install {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.95) 0%, var(--bg) 100%);
}

.install::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(247, 255, 60, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.install .section-title {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 80px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 40%, var(--fg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  letter-spacing: -0.02em;
}

.install-steps {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
}

.install-steps::before {
  display: none; /* Removed connecting line for cleaner look */
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.step:hover {
  transform: translateX(8px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e6ed00);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 
    0 8px 24px rgba(247, 255, 60, 0.4),
    0 4px 12px rgba(247, 255, 60, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 32px rgba(247, 255, 60, 0.5),
    0 6px 16px rgba(247, 255, 60, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.step-content {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 255, 60, 0.15);
  border-radius: 20px;
  padding: 32px;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 255, 60, 0.5));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.step-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(247, 255, 60, 0.02), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.step:hover .step-content {
  /* border-color: rgba(247, 255, 60, 0.3); */
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.1),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  transform: translateY(-4px);
}

.step:hover .step-content::before {
  transform: scaleX(1);
}

.step:hover .step-content::after {
  opacity: 1;
}

.step-content h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
}

.step-content code {
  background: rgba(11, 11, 11, 0.8);
  border: 1px solid rgba(247, 255, 60, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--accent);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.download-section {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.download-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Shortcuts - Premium Glass Design */
.shortcuts {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(18, 18, 18, 0.95) 100%);
}

.shortcuts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(247, 255, 60, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.shortcuts .section-title {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 80px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 30%, var(--fg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 5s ease-in-out infinite;
  letter-spacing: -0.02em;
}

.shortcuts-list {
  display: grid;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.shortcut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 255, 60, 0.12);
  border-radius: 16px;
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(247, 255, 60, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.shortcut::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(247, 255, 60, 0.02), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.shortcut:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.2),
    inset 0 2px 0 rgba(247, 255, 60, 0.15);
  /* border-color: rgba(247, 255, 60, 0.3); */
}

.shortcut:hover::after {
  opacity: 1;
}

.shortcut::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), rgba(247, 255, 60, 0.6));
  border-radius: 20px 0 0 20px;
  transform: scaleY(0);
  transition: transform 0.5s ease;
  box-shadow: 0 0 8px rgba(247, 255, 60, 0.3);
}

.shortcut:hover::before {
  transform: scaleY(1);
}

.shortcut {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.step-details {
  flex: 1;
}

.step-action {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.5;
}

.step-method {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-note {
  margin-top: 40px;
  padding: 24px;
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(20px);
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.workflow-note p {
  margin: 0;
  font-size: 1rem;
  color: var(--fg);
  font-weight: 400;
}

kbd {
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 255, 60, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(247, 255, 60, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

kbd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 255, 60, 0.6));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.shortcut:hover kbd {
  background: rgba(247, 255, 60, 0.1);
  border-color: var(--accent);
  box-shadow: 
    0 6px 12px rgba(247, 255, 60, 0.3),
    0 3px 6px rgba(247, 255, 60, 0.2),
    inset 0 2px 0 rgba(247, 255, 60, 0.3);
  transform: scale(1.05);
}

.shortcut:hover kbd::before {
  transform: scaleX(1);
}

/* Footer - Premium Design */
.footer {
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.98) 0%, var(--bg) 100%);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(247, 255, 60, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-content p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 32px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 255, 60, 0.6));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-links a:hover {
  color: var(--accent);
  background: rgba(247, 255, 60, 0.05);
}

.footer-links a:hover::before {
  width: 80%;
}

/* Responsive */
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 100px 20px 60px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .use-case-card {
    flex: 0 0 320px;
  }
  
  .card-visual {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1.125rem;
  }
  
  /* Features responsive */
  .features::before {
    display: none;
  }
  
  .feature-item {
    flex-direction: column !important;
    text-align: center;
    gap: 24px;
    margin: 40px 0;
  }
  
  .feature-number {
    font-size: 4rem;
    order: -1;
  }
  
  .feature-content {
    max-width: none;
  }
  
  .demo-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .demo-arrow {
    transform: rotate(90deg);
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .demo-before, .demo-after {
    padding: 32px 24px;
    min-height: 200px;
  }
  
  .demo .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
  }
  
  .install-steps::before {
    display: none;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-content {
    padding: 24px;
  }
  
  .install-steps::before {
    display: none;
  }
  
  .step {
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Carousel responsive */
  .use-case-card {
    flex: 0 0 280px;
  }
  
  .carousel-track {
    padding: 0 10px;
  }
  
  .card-visual {
    height: 200px;
    padding: 12px;
  }
  
  .mockup-content {
    padding: 12px;
    font-size: 0.7rem;
  }
  
  .carousel-nav {
    gap: 15px;
    margin-top: 30px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  /* Mobile responsive for new elements */
  .feedback-button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .feedback-text {
    display: none;
  }
  
  .feedback-icon {
    transform: rotate(0deg);
  }
  
  .bottom-cta h2 {
    font-size: 2rem;
  }
  
  .bottom-cta p {
    font-size: 1.1rem;
  }
  
  /* Mobile punctuation guide */
  .dash-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .dash-item {
    padding: 24px;
  }
  
  .dash-symbol {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .use-case-card {
    flex: 0 0 260px;
  }
  
  .card-visual {
    height: 180px;
    padding: 8px;
  }
  
  .card-content {
    padding: 20px 16px;
  }
  
  .mockup-content {
    padding: 10px;
    font-size: 0.65rem;
  }
}

/* ===== SCROLL ANIMATIONS & PREMIUM INTERACTIONS ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations */
.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }
.scroll-reveal.delay-5 { transition-delay: 0.5s; }
.scroll-reveal.delay-6 { transition-delay: 0.6s; }

/* Parallax effects */
.parallax-slow {
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

/* Enhanced hover states */
.interactive-hover {
  transition: all 0.4s ease;
}

.interactive-hover:hover {
  transform: translateY(-2px);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus management for accessibility */
.focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Button press animations */
.btn-press {
  transform: scale(1);
  transition: transform 0.1s ease;
}

.btn-press:active {
  transform: scale(0.98);
}

/* Magnetic cursor effect preparation */
.magnetic {
  position: relative;
  transition: transform 0.3s ease;
}

/* Enhanced micro-interactions */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.pulse-on-hover:hover {
  animation: pulse 2s ease-in-out infinite;
}

/* Page load animations */
.page-fade-in {
  animation: pageLoadFade 1s ease-out;
}

@keyframes pageLoadFade {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* ===== PUNCTUATION GUIDE SECTION ===== */
.punctuation-guide {
  padding: 120px 20px;
  background: 
    linear-gradient(135deg, rgba(247, 255, 60, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(18, 18, 18, 0.6) 0%, var(--bg) 80%);
  position: relative;
}

.dash-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.dash-item {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 255, 60, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.dash-item:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 255, 60, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.1);
}

.dash-symbol {
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

.dash-info h3 {
  color: var(--fg);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px;
  text-align: center;
}

.dash-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
  text-align: center;
}

.dash-example {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(247, 255, 60, 0.1);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.dash-example strong {
  color: var(--fg);
}

.dash-problem {
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 6px;
}

.dash-usage {
  color: #51cf66;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  background: rgba(81, 207, 102, 0.1);
  border-radius: 6px;
}

.conversion-tip {
  max-width: 600px;
  margin: 60px auto 0;
  background: rgba(247, 255, 60, 0.1);
  border: 1px solid rgba(247, 255, 60, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.conversion-tip p {
  color: var(--fg);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== BOTTOM CTA SECTION ===== */
.bottom-cta {
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(247, 255, 60, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(18, 18, 18, 0.8) 0%, var(--bg) 70%);
  position: relative;
}

.bottom-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bottom-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.bottom-cta p {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

.bottom-cta .btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ===== FEEDBACK BUTTON ===== */
.feedback-button-container {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.feedback-button {
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: 50px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 
    0 6px 18px rgba(247, 255, 60, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.feedback-button:hover {
  transform: scale(1.05);
  box-shadow: 
    0 12px 32px rgba(247, 255, 60, 0.3),
    0 6px 16px rgba(0, 0, 0, 0.4);
}

.feedback-icon {
  font-size: 1rem;
  transform: rotate(90deg);
}

.feedback-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ===== FEEDBACK MODAL ===== */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feedback-modal.show {
  display: flex;
  opacity: 1;
}

.feedback-modal-content {
  background: var(--panel);
  border: 1px solid rgba(247, 255, 60, 0.2);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.feedback-modal.show .feedback-modal-content {
  transform: scale(1);
}

.feedback-modal-content h3 {
  color: var(--fg);
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.feedback-modal-content p {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.feedback-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.feedback-links .btn {
  flex: 1;
  text-decoration: none;
  text-align: center;
}

/* ===== FEEDBACK FORM STYLES ===== */
.feedback-form {
  text-align: left;
  margin-top: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 4px;
  margin: 8px 0;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.5rem;
  color: #444;
  cursor: pointer;
  transition: color 0.2s ease;
  margin-bottom: 0;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--accent);
}

.form-group textarea,
.form-group input[type="email"] {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(247, 255, 60, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: var(--fg);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-group textarea:focus,
.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(247, 255, 60, 0.3);
}

.form-group textarea::placeholder,
.form-group input[type="email"]::placeholder {
  color: var(--muted);
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.form-actions .btn {
  flex: 1;
  text-decoration: none;
  text-align: center;
}

/* ===== VIDEO DEMO SECTION ===== */
.video-demo {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(135deg, rgba(247, 255, 60, 0.03) 0%, transparent 40%, rgba(247, 255, 60, 0.03) 100%);
}

.video-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(247, 255, 60, 0.1);
  background: var(--panel);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.video-cta {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(31, 31, 31, 0.6) 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.video-description {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 30px;
  font-weight: 300;
  line-height: 1.6;
}

.video-cta .btn {
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 16px 32px;
}

/* Video demo responsive */
@media (max-width: 768px) {
  .video-demo {
    padding: 80px 20px;
  }
  
  .video-wrapper {
    border-radius: 16px;
    margin-bottom: 30px;
  }
  
  .video-wrapper iframe {
    border-radius: 16px;
  }
  
  .video-cta {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .video-description {
    font-size: 1.1rem;
    margin: 0 0 25px;
  }
}