:root,
[data-theme="dark"] {
  --bg: #0b0f19;
  --panel-bg: rgba(17, 24, 39, 0.75);
  --header-bg: rgba(11, 15, 25, 0.85);
  --bottom-bg: rgba(15, 22, 36, 0.9);
  --toolbar-bg: rgba(20, 30, 48, 0.7);
  --pills-bg: rgba(10, 14, 26, 0.8);
  --accent: #00f2fe;
  --accent-secondary: #4facfe;
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --accent-green: #10b981;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --text-sub: #6b7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --btn-bg: rgba(255, 255, 255, 0.05);
  --btn-hover: rgba(255, 255, 255, 0.1);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.25);
  --badge-text: #ffffff;
  --btn-guardar-text: #000000;
}

[data-theme="light"] {
  --bg: #f3f4f6;
  --panel-bg: rgba(255, 255, 255, 0.95);
  --header-bg: rgba(255, 255, 255, 0.95);
  --bottom-bg: rgba(255, 255, 255, 0.95);
  --toolbar-bg: rgba(243, 244, 246, 0.9);
  --pills-bg: rgba(229, 231, 235, 0.8);
  --accent: #0284c7;
  --accent-secondary: #0ea5e9;
  --accent-gradient: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  --accent-green: #059669;
  --text: #111827;
  --text-muted: #4b5563;
  --text-sub: #6b7280;
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.15);
  --btn-bg: rgba(0, 0, 0, 0.04);
  --btn-hover: rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.15);
  --badge-text: #111827;
  --btn-guardar-text: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input, select, textarea {
  user-select: auto;
  -webkit-user-select: auto;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(0, 242, 254, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(79, 172, 254, 0.03) 0%, transparent 40%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Barra Superior / Header */
.header-bar {
  height: 64px;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.tools-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tool-tab:hover {
  color: var(--text);
  background: var(--btn-bg);
}

.tool-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
  font-weight: 600;
}

/* Info Badges del Header - Ampliados y Separados */
.header-info-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel-bg);
  padding: 6px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);

}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.group-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.8px;
}

.info-arrow {
  color: var(--border-light);
  font-size: 1rem;
  margin: 0 4px;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.header-badge span {
  color: var(--badge-text);
  font-weight: 600;
}

.dot {
  color: var(--border-light) !important;
  font-weight: 400 !important;
}

.estimated-size-tag {
  color: var(--accent-green) !important;
  font-weight: 700 !important;
}

.tools-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-icon {
  background: var(--btn-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  color: var(--text);
  background: var(--btn-hover);
  border-color: var(--border-light);
}

/* Area Principal del Video */
.main-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg);
  padding: 24px;
  overflow-y: auto;
}

html,
body {
  height: 100%;
}

body.has-video {
  height: 100vh !important;
  max-height: 100vh !important;
  overflow: hidden !important;
}

body.has-video .header-bar,
body.has-video .bottom-panel {
  flex-shrink: 0;
}

.main-stage.has-video {
  flex: 1;
  min-height: 0;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
  height: 100%;
}

.main-stage.has-video #landingWrapper,
.main-stage.has-video .landing-hero,
.main-stage.has-video .features-grid,
.main-stage.has-video .file-upload-box {
  display: none !important;
}

.main-stage.has-video .video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  gap: 8px;
}

.main-stage.has-video .video-filename-header {
  flex-shrink: 0;
}

.main-stage.has-video .video-player-container {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.main-stage.has-video video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Custom Dropzone Design */
.file-upload-box {
  border: 2px dashed rgba(0, 242, 254, 0.35);
  padding: 50px 60px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.file-upload-box:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  transform: translateY(-2px);
}

.upload-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.upload-icon {
  font-size: 1.8rem;
}

.file-upload-box h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.file-upload-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-select-file {
  margin-top: 6px;
  background: var(--btn-bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-upload-box:hover .btn-select-file {
  background: var(--accent-gradient);
  color: var(--btn-guardar-text);
  border-color: transparent;
  font-weight: 600;
}

/* Contenedor Video */
.video-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 58vh;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-filename-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel-bg);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}

.filename-icon {
  font-size: 0.85rem;
}

.filename-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--badge-text);
  white-space: nowrap;
}

.video-player-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

video {
  max-width: 100%;
  max-height: 50vh;
  border-radius: 12px;
  display: block;
  background: #000;
}

/* Cuadrícula de Crop Espacial */
.crop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px dashed rgba(0, 242, 254, 0.9);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  display: none;
  pointer-events: auto;
  cursor: move;
  z-index: 15;
}

.crop-grid-line-v1,
.crop-grid-line-v2 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.crop-grid-line-v1 {
  left: 33.33%;
}

.crop-grid-line-v2 {
  left: 66.66%;
}

.crop-grid-line-h1,
.crop-grid-line-h2 {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.crop-grid-line-h1 {
  top: 33.33%;
}

.crop-grid-line-h2 {
  top: 66.66%;
}

.crop-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  z-index: 25;
}

.crop-handle.tl {
  top: -6px;
  left: -6px;
  cursor: nwse-resize;
}

.crop-handle.tr {
  top: -6px;
  right: -6px;
  cursor: nesw-resize;
}

.crop-handle.bl {
  bottom: -6px;
  left: -6px;
  cursor: nesw-resize;
}

.crop-handle.br {
  bottom: -6px;
  right: -6px;
  cursor: nwse-resize;
}

.crop-handle.tc {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  cursor: ns-resize;
}

.crop-handle.bc {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  cursor: ns-resize;
}

.crop-handle.ml {
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  cursor: ew-resize;
}

.crop-handle.mr {
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  cursor: ew-resize;
}

/* Barra Inferior (Timeline + Opciones) */
.bottom-panel {
  background: var(--bottom-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 50px 50px;
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 50;
}

/* Timeline */
.timeline-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
}

.time-indicator {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--header-bg);
  border: 1px solid var(--border-light);
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.timeline-track {
  position: relative;
  height: 48px;
  background: var(--toolbar-bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
}

.timeline-thumbnails {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  overflow: hidden;
  z-index: 0;
}

.timeline-thumbnails img {
  height: 100%;
  flex-grow: 1;
  object-fit: cover;
  opacity: 0.65;
}

.timeline-selection {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(0, 242, 254, 0.2);
  border-left: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  cursor: grab;
  z-index: 5;
}

.timeline-selection:active {
  cursor: grabbing;
}

.handle {
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  background: var(--accent-gradient);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.handle::after {
  content: '⋮';
  color: var(--btn-guardar-text);
  font-size: 11px;
  font-weight: 800;
}

.handle-left {
  left: 0;
  transform: translateX(-50%);
  border-radius: 4px 0 0 4px;
}

.handle-right {
  right: 0;
  transform: translateX(50%);
  border-radius: 0 4px 4px 0;
}

/* Controles Inferiores */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.left-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.play-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--btn-bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.play-btn:hover {
  background: var(--btn-hover);
  border-color: var(--accent);
  color: var(--accent);
}

.option-pills {
  display: flex;
  background: var(--pills-bg);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  gap: 2px;
}

.pill-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 7px 14px;
  font-size: 0.82rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pill-btn:hover {
  color: var(--text);
}

.pill-btn.active {
  background: var(--accent-gradient);
  color: var(--btn-guardar-text);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.3);
}

.resolution-info {
  font-size: 0.78rem;
  color: var(--text-sub);
  font-weight: 500;
}

.aspect-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.aspect-inputs input {
  width: 58px;
  background: var(--panel-bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 5px 8px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.85rem;
  outline: none;
}

.aspect-inputs input:focus {
  border-color: var(--accent);
}

.right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-audio {
  background: var(--btn-bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-audio:hover {
  background: var(--btn-hover);
}

.btn-calc-toggle {
  background: var(--btn-bg);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-calc-toggle:hover {
  background: var(--btn-hover);
  color: var(--text);
}

.btn-calc-toggle.active {
  color: var(--accent);
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.08);
  font-weight: 600;
}

.btn-audio.muted {
  color: #f43f5e;
  border-color: rgba(244, 63, 94, 0.4);
  background: rgba(244, 63, 94, 0.1);
}

.btn-guardar {
  background: var(--accent-gradient);
  color: var(--btn-guardar-text);
  border: none;
  padding: 10px 28px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
  transition: all 0.2s ease;
}

.btn-guardar:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

.btn-guardar:active {
  transform: translateY(0);
}

.format-select {
  background: var(--btn-bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
}

.format-select:hover,
.format-select:focus {
  background: var(--btn-hover);
  border-color: var(--accent);
}

.format-select option {
  background: var(--bg);
  color: var(--text);
}

/* Ambient Glow Effects */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.bg-glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
  top: -100px;
  left: 10%;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.bg-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4facfe 0%, transparent 70%);
  bottom: 50px;
  right: 10%;
  animation: pulseGlow 10s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.12;
  }

  100% {
    transform: scale(1.15) translate(20px, 20px);
    opacity: 0.22;
  }
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.2px;
}

.brand-logo .logo-icon {
  font-size: 1.25rem;
}

.brand-logo .logo-text strong {
  color: var(--accent);
  font-weight: 800;
}

.logo-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: blinkDot 1.8s infinite;
}

@keyframes blinkDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Hero Presentation Landing */
.landing-hero {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.4s ease-out;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(79, 172, 254, 0.05));
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px 0;
  letter-spacing: -0.6px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 400;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 960px;
  margin-top: 36px;
  margin-bottom: 24px;
  animation: fadeIn 0.5s ease-out;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 16px;
  text-align: left;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.15);
}

.feature-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(79, 172, 254, 0.04));
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.feature-icon {
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}