/* ===================================================================
   Snip Marketing Site — Styles
   Brand: Purple/Violet accent, dark theme, Liquid Glass aesthetic
   =================================================================== */

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

:root {
  --accent: #8B5CF6;
  --accent-hover: #7C3AED;
  --accent-dim: rgba(139, 92, 246, 0.15);
  --accent-glow: rgba(139, 92, 246, 0.4);
  --bg-body: #09090b;
  --bg-surface: rgba(20, 20, 20, 0.6);
  --bg-elevated: rgba(30, 30, 30, 0.7);
  --bg-card: rgba(25, 25, 25, 0.8);
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(139, 92, 246, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s ease;
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

kbd {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--font);
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  white-space: nowrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.nav-logo img,
.nav-logo > svg {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-bottom: 60px;
}

.ph-badge {
  display: inline-block;
  transition: transform var(--transition), opacity var(--transition);
}

.ph-badge:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.ph-badge img {
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-gradient {
  background: linear-gradient(135deg, #A78BFA, #8B5CF6, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 20px auto 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download-link,
.download-link-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- Brew Install Command --- */
.brew-install {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: border-color var(--transition), background var(--transition);
}

.brew-install:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
}

.brew-prompt {
  color: var(--accent);
  user-select: none;
  font-weight: 600;
}

.brew-install code {
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.brew-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  margin-left: 4px;
  flex-shrink: 0;
}

.brew-copy:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.brew-check-icon {
  display: none;
}

.brew-copy.copied .brew-copy-icon {
  display: none;
}

.brew-copy.copied .brew-check-icon {
  display: block;
}

.brew-copy.copied {
  color: #22c55e;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.btn.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
}

.hero-guide-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  perspective: 1200px;
}

/* --- Hero Video --- */
.hero-video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(139, 92, 246, 0.1);
  transform: rotateX(2deg);
  transition: transform 0.6s ease;
}

.hero-video-wrapper:hover {
  transform: rotateX(0deg);
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* --- Feature Showcase --- */
.showcase {
  padding: 80px 0 40px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showcase-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.showcase-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-label {
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* --- Sections --- */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* --- Features Grid --- */
.features {
  padding: 120px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
}

/* --- How It Works (two-column flows) --- */

.how-it-works-flows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.flow-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--accent);
}

.flow-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .how-it-works-flows {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- More Features Banner --- */

.more-features-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px dashed var(--accent-dim);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.more-features-banner:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.more-features-content {
  flex: 1;
}

.more-features-content h2 {
  font-size: 1.3rem;
  margin: 12px 0 8px;
}

.more-features-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.more-features-arrow {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.more-features-banner:hover .more-features-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* --- How It Works (legacy) --- */
.how-it-works {
  padding: 120px 0;
  position: relative;
}

.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(139, 92, 246, 0.1));
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
}

/* --- Tools --- */
.tools-section {
  padding: 120px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tool-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.tool-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.tool-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  margin-bottom: 14px;
}

.tool-card h3 {
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tool-card-accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  border-color: rgba(139, 92, 246, 0.25);
}

.tool-card-accent:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

/* --- New Badge --- */
.badge-new {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
  animation: new-badge-pulse 2s ease-in-out infinite;
}

@keyframes new-badge-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(139, 92, 246, 0.4); }
  50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); }
}

/* --- Badge Sparkles --- */
.badge-animate {
  overflow: visible;
}

.badge-sparkles {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 2px;
  position: relative;
  width: 20px;
  height: 12px;
  vertical-align: middle;
}

.badge-sparkle {
  position: absolute;
  color: var(--accent);
  animation: badge-sparkle-twinkle 2.5s ease-in-out infinite;
}

.badge-sparkle-1 {
  top: -2px;
  left: 0;
  animation-delay: 0s;
}

.badge-sparkle-2 {
  top: 2px;
  left: 10px;
  animation-delay: 0.8s;
}

.badge-sparkle-3 {
  top: -4px;
  left: 16px;
  animation-delay: 1.5s;
}

@keyframes badge-sparkle-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.5) rotate(0deg); }
  30% { opacity: 1; transform: scale(1.3) rotate(20deg); }
  60% { opacity: 0.4; transform: scale(0.7) rotate(-10deg); }
  80% { opacity: 0.9; transform: scale(1.1) rotate(10deg); }
}

/* --- Inline Links --- */
.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--transition);
}

.inline-link:hover {
  text-decoration-color: var(--accent);
}

/* --- Animate Setup Callout --- */
.animate-setup {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.animate-setup svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.animate-setup strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.animate-setup p {
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.animate-setup ol {
  margin: 0;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.animate-setup ol li {
  margin-bottom: 4px;
}

.animate-setup ol li:last-child {
  margin-bottom: 0;
}

/* --- Segment Tagging Demo --- */
.segment-tag-demo {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.segment-tag-visual {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.segment-tag-video-wrapper {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.1);
  background: #000;
}

.segment-tag-video {
  width: 100%;
  height: auto;
  display: block;
}

.segment-tag-steps {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.segment-tag-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.segment-tag-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.segment-tag-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.segment-tag-step strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.segment-tag-step span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .segment-tag-visual {
    flex-direction: column;
    gap: 32px;
  }

  .segment-tag-steps {
    flex: none;
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }

  .segment-tag-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transform: translateY(20px);
  }

  .segment-tag-step.visible {
    transform: translateY(0);
  }
}

/* --- Upscale Demo --- */
.upscale-demo {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.upscale-demo-visual {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.upscale-demo-video-wrapper {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.1);
  background: #000;
}

.upscale-demo-video {
  width: 100%;
  height: auto;
  display: block;
}

.upscale-demo-steps {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.upscale-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.upscale-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.upscale-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.upscale-step strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.upscale-step span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .upscale-demo-visual {
    flex-direction: column;
    gap: 32px;
  }

  .upscale-demo-steps {
    flex: none;
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }

  .upscale-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transform: translateY(20px);
  }

  .upscale-step.visible {
    transform: translateY(0);
  }
}

/* --- Transcribe Demo --- */
.transcribe-demo {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.transcribe-demo-visual {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.transcribe-demo-video-wrapper {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.transcribe-demo-video-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.transcribe-demo-video {
  width: 100%;
  height: auto;
  display: block;
}

.transcribe-demo-steps {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transcribe-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.transcribe-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.transcribe-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.transcribe-step strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.transcribe-step span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .transcribe-demo-visual {
    flex-direction: column;
    gap: 32px;
  }

  .transcribe-demo-steps {
    flex: none;
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }

  .transcribe-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transform: translateY(20px);
  }

  .transcribe-step.visible {
    transform: translateY(0);
  }
}

/* --- AI Section --- */
.ai-section {
  padding: 120px 0;
  position: relative;
}

/* --- AI Screenshot Showcase --- */
.ai-screenshot {
  margin-bottom: 48px;
}

.ai-screenshot-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(139, 92, 246, 0.08);
}

.ai-screenshot-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.ai-callout {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(139, 92, 246, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
  white-space: nowrap;
  pointer-events: none;
  animation: callout-pulse 3s ease-in-out infinite;
}

.ai-callout svg {
  flex-shrink: 0;
}

@keyframes callout-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(139, 92, 246, 0.6); }
}

.ai-callout-tags {
  top: 12%;
  right: -12px;
  transform: translateX(0);
}

.ai-callout-search {
  top: 3%;
  left: 18%;
}

.ai-callout-gallery {
  bottom: 8%;
  right: -12px;
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ai-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.ai-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.ai-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--accent);
}

.ai-card-header h3 {
  color: #fff;
}

.ai-card p {
  font-size: 0.9rem;
}

.ai-privacy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.ai-privacy svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-privacy strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.ai-privacy p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Animate Demo --- */
.animate-demo {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.animate-demo-visual {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.animate-demo-video-wrapper {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.1);
  background: #000;
}

.animate-demo-video {
  width: 100%;
  height: auto;
  display: block;
}

.animate-demo-steps {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.animate-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.animate-step strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.animate-step span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .animate-demo-visual {
    flex-direction: column;
    gap: 32px;
  }

  .animate-demo-steps {
    flex: none;
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }

  .animate-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transform: translateY(20px);
  }

  .animate-step.visible {
    transform: translateY(0);
  }
}

/* --- MCP Server --- */
.mcp-demo { padding: 100px 0; }

.mcp-demo-video-wrapper {
  margin-bottom: 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mcp-demo-video-wrapper video {
  width: 100%;
  display: block;
}

.mcp-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.mcp-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mcp-tool-card strong {
  font-size: 13px;
  font-family: 'SF Mono', 'Menlo', monospace;
  color: var(--accent);
}

.mcp-tool-card span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.mcp-setup {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 16px;
}

.mcp-setup svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.mcp-setup strong { font-size: 15px; }
.mcp-setup p { font-size: 14px; color: var(--text-secondary); margin: 6px 0 12px; }
.mcp-setup ol { padding-left: 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* --- Extensions --- */
.extensions-demo { padding: 80px 0; }

.extensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.extension-point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extension-point strong {
  font-size: 15px;
  color: var(--text-primary);
}

.extension-point span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.extension-point code {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
}

/* --- Tech Stack --- */
.tech-section {
  padding: 100px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--border-hover);
}

.tech-item strong {
  color: #fff;
  font-size: 0.95rem;
}

.tech-item span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- CTA --- */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 12px;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-section .hero-actions {
  position: relative;
}

/* --- Footer --- */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff;
}

.footer-brand svg {
  border-radius: 6px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.claude-code-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #D97757;
  font-weight: 600;
  position: relative;
}

.claude-code-badge svg {
  flex-shrink: 0;
  animation: claude-sparkle 3s ease-in-out infinite;
}

@keyframes claude-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

/* --- Sparkle Canvas --- */
#sparkle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* --- Sparkle Stars (CSS) --- */
.sparkle-star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #a5b4fc;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  animation: sparkle-twinkle 3s ease-in-out infinite;
  pointer-events: none;
}

/* Hero sparkle placements */
.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-star-1 {
  top: 18%; left: 8%;
  width: 10px; height: 10px;
  background: #93c5fd;
  animation-delay: 0s;
  animation-duration: 3.2s;
}
.sparkle-star-2 {
  top: 12%; right: 12%;
  width: 7px; height: 7px;
  background: #c4b5fd;
  animation-delay: 0.6s;
  animation-duration: 2.8s;
}
.sparkle-star-3 {
  top: 35%; left: 5%;
  width: 5px; height: 5px;
  background: #818cf8;
  animation-delay: 1.2s;
  animation-duration: 4s;
}
.sparkle-star-4 {
  top: 30%; right: 8%;
  width: 9px; height: 9px;
  background: #a5b4fc;
  animation-delay: 0.4s;
  animation-duration: 3.5s;
}
.sparkle-star-5 {
  top: 55%; left: 12%;
  width: 6px; height: 6px;
  background: #93c5fd;
  animation-delay: 1.8s;
  animation-duration: 2.6s;
}
.sparkle-star-6 {
  top: 50%; right: 6%;
  width: 8px; height: 8px;
  background: #c4b5fd;
  animation-delay: 2.2s;
  animation-duration: 3.8s;
}
.sparkle-star-7 {
  top: 72%; left: 15%;
  width: 5px; height: 5px;
  background: #818cf8;
  animation-delay: 0.8s;
  animation-duration: 3s;
}
.sparkle-star-8 {
  top: 65%; right: 14%;
  width: 7px; height: 7px;
  background: #93c5fd;
  animation-delay: 1.4s;
  animation-duration: 3.4s;
}

/* CTA sparkle placements */
.cta-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-star-c1 {
  top: 15%; left: 10%;
  width: 9px; height: 9px;
  background: #a5b4fc;
  animation-delay: 0.3s;
  animation-duration: 3.2s;
}
.sparkle-star-c2 {
  top: 20%; right: 15%;
  width: 7px; height: 7px;
  background: #93c5fd;
  animation-delay: 1.1s;
  animation-duration: 2.9s;
}
.sparkle-star-c3 {
  top: 55%; left: 8%;
  width: 6px; height: 6px;
  background: #c4b5fd;
  animation-delay: 0.7s;
  animation-duration: 3.6s;
}
.sparkle-star-c4 {
  top: 60%; right: 10%;
  width: 8px; height: 8px;
  background: #818cf8;
  animation-delay: 1.8s;
  animation-duration: 3s;
}
.sparkle-star-c5 {
  top: 80%; left: 18%;
  width: 5px; height: 5px;
  background: #93c5fd;
  animation-delay: 2.4s;
  animation-duration: 2.7s;
}
.sparkle-star-c6 {
  top: 75%; right: 20%;
  width: 6px; height: 6px;
  background: #a5b4fc;
  animation-delay: 0.5s;
  animation-duration: 3.4s;
}

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  20% { opacity: 0.9; transform: scale(1.2) rotate(20deg); }
  50% { opacity: 0.5; transform: scale(0.8) rotate(-10deg); }
  70% { opacity: 1; transform: scale(1.3) rotate(15deg); }
  90% { opacity: 0.2; transform: scale(0.6) rotate(5deg); }
}

/* --- Button Shimmer --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: none;
  animation: shimmer-idle 4s ease-in-out infinite;
}

.btn-primary:hover::after {
  animation: shimmer-sweep 0.6s ease forwards;
}

@keyframes shimmer-idle {
  0%, 85%, 100% { left: -100%; opacity: 0; }
  90% { left: -100%; opacity: 1; }
  95% { left: 150%; opacity: 1; }
}

@keyframes shimmer-sweep {
  from { left: -100%; opacity: 1; }
  to { left: 150%; opacity: 1; }
}

/* --- Card Hover Sparkle Glow --- */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 180px at var(--glow-x, 50%) var(--glow-y, 50%), rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Feature icon sparkle pulse on card hover */
.feature-card:hover .feature-icon {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
  transition: box-shadow 0.3s ease;
}

/* --- Section Badge Sparkle --- */
.section-badge {
  position: relative;
  overflow: hidden;
}

.section-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  animation: badge-shimmer 5s ease-in-out infinite;
}

@keyframes badge-shimmer {
  0%, 80%, 100% { left: -100%; }
  85%, 95% { left: 150%; }
}

/* --- Tool Card Glow --- */
.tool-card {
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.15), inset 0 0 24px rgba(139, 92, 246, 0.03);
}

.tool-card:hover .tool-key {
  text-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

/* --- AI Card Glow --- */
.ai-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.12);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features-grid .feature-card,
.tools-grid .tool-card,
.ai-features .ai-card,
.tech-grid .tech-item,
.steps .step,
.showcase-grid .showcase-item,
.animate-demo-video-wrapper,
.segment-tag-video-wrapper,
.upscale-demo-video-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.features-grid .feature-card.visible,
.tools-grid .tool-card.visible,
.ai-features .ai-card.visible,
.tech-grid .tech-item.visible,
.steps .step.visible,
.showcase-grid .showcase-item.visible,
.animate-demo-video-wrapper.visible,
.segment-tag-video-wrapper.visible,
.upscale-demo-video-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .features, .how-it-works, .tools-section, .ai-section, .tech-section {
    padding: 100px 0;
  }

  .segment-tag-demo, .animate-demo, .upscale-demo, .transcribe-demo {
    padding: 100px 0;
  }
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .segment-tag-visual,
  .animate-demo-visual,
  .upscale-demo-visual,
  .transcribe-demo-visual {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .ai-callout {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .ai-callout-tags {
    right: 4px;
    top: 10%;
  }

  .ai-callout-gallery {
    right: 4px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .animate-setup,
  .ai-privacy {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    align-self: center;
    margin-top: 8px;
    padding: 10px 28px !important;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .ai-features {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .step {
    gap: 16px;
  }

  .brew-install {
    font-size: 0.75rem;
    padding: 8px 12px 8px 14px;
    max-width: 100%;
    overflow-x: auto;
  }

  .brew-install code {
    font-size: 0.72rem;
  }

  .hero-visual {
    margin: 0 -12px;
  }

  .hero-video-wrapper {
    border-radius: var(--radius-sm);
  }

  .hero-video {
    border-radius: var(--radius-sm);
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.92rem;
  }

  .ai-screenshot-img-wrapper {
    border-radius: var(--radius-sm);
  }

  .ai-screenshot-img-wrapper img {
    border-radius: var(--radius-sm);
  }

  .ai-callout {
    display: none;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .step:not(:last-child)::after {
    left: 19px;
    top: 64px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .features, .how-it-works, .tools-section, .ai-section {
    padding: 80px 0;
  }

  .segment-tag-demo, .animate-demo, .upscale-demo, .transcribe-demo {
    padding: 80px 0;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo span {
    display: none;
  }

  .brew-install {
    font-size: 0.68rem;
    gap: 6px;
  }

  .brew-install code {
    font-size: 0.65rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
