/* MeloTune - Bento Grid Landing Page */

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

/* Protect images from download */
img, svg {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Re-enable pointer events for interactive SVGs */
.logo svg,
a svg,
button svg {
  pointer-events: auto;
}

/* App Store badge link */
.app-store-badge {
  display: inline-block;
  cursor: pointer;
}

.app-store-badge img,
.app-store-badge svg {
  display: block;
  pointer-events: auto;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-icon {
  filter: drop-shadow(0 0 6px rgba(193, 252, 187, 0.5));
}

.logo sup {
  font-size: 0.5em;
  vertical-align: super;
  opacity: 0.7;
  margin-left: 1px;
}

/* Animated meter arc */
.meter-arc {
  animation: meter-pulse 10.5s ease-in-out infinite;
}

@keyframes meter-pulse {
  0%, 100% {
    stroke-dasharray: 12.7 56.5;
  }
  50% {
    stroke-dasharray: 38.1 56.5;
  }
}

.header-cta {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  border: 1px solid rgba(54, 194, 205, 0.4);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(54, 194, 205, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Shimmer effect */
.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 194, 205, 0.25),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: header-shimmer 3s ease-in-out infinite;
}

@keyframes header-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Glow border */
.header-cta::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #36C2CD, #8B5CF6, #EC4899, #36C2CD);
  border-radius: 11px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: glow-shift 4s linear infinite;
  background-size: 300% 300%;
}

@keyframes glow-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 194, 205, 0.7);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(54, 194, 205, 0.25),
    0 0 50px rgba(139, 92, 246, 0.1);
}

.header-cta:hover::after {
  opacity: 0.5;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Giant Background Dial */
.bg-dial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140vmax;
  height: 140vmax;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-dial-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 100px rgba(193, 252, 187, 0.15));
}

/* Vinyl disc rotation for background */
.bg-dial .vinyl-disc {
  animation: vinyl-spin 30s linear infinite;
  transform-origin: 170px 170px;
}

@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pointer glow for background */
.bg-dial .pointer-rect {
  filter: drop-shadow(0 0 15px rgba(193, 252, 187, 0.8));
}

/* Album art subtle pulse */
.album-art {
  animation: art-pulse 3s ease-in-out infinite;
}

@keyframes art-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

/* Hero Headline - Bold Typography */
.hero-headline {
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-headline span {
  display: block;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, #c1fcbb 0%, #7dd87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Primary CTA Button */
.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.cta-button-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cta-button-primary svg {
  transition: transform 0.2s;
}

.cta-button-primary:hover svg {
  transform: translateX(3px);
}

/* ==================== THE MELOTUNE DIFFERENCE ==================== */
.difference-section {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.difference-inner {
  text-align: center;
}

.difference-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.difference-subtitle {
  font-size: 1.25rem;
  color: #c1fcbb;
  margin-bottom: 1rem;
  font-weight: 500;
}

.difference-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Ready For You Card - App Style */
.ready-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(20, 20, 18, 0.95) 0%, rgba(15, 15, 12, 0.98) 100%);
  border: 1px solid rgba(193, 252, 187, 0.15);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(193, 252, 187, 0.05);
}

.ready-card-left {
  flex-shrink: 0;
}

.play-button-rings {
  position: relative;
  width: 72px;
  height: 72px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(193, 252, 187, 0.3);
}

.ring-outer {
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  animation: ring-pulse-outer 2.5s ease-in-out infinite;
}

.ring-inner {
  top: 8px;
  left: 8px;
  width: 56px;
  height: 56px;
  border-color: rgba(193, 252, 187, 0.5);
  animation: ring-pulse-inner 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes ring-pulse-outer {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    border-color: rgba(193, 252, 187, 0.3);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
    border-color: rgba(193, 252, 187, 0.6);
  }
}

@keyframes ring-pulse-inner {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
    border-color: rgba(193, 252, 187, 0.4);
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
    border-color: rgba(193, 252, 187, 0.7);
  }
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(193, 252, 187, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c1fcbb;
}

.play-icon svg {
  margin-left: 3px;
}

.ready-card-content {
  flex: 1;
  min-width: 0;
}

.ready-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #b8d4a8;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.ready-description {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.ready-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ready-metric {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(193, 252, 187, 0.6);
}

.metric-value {
  font-size: 1rem;
  font-weight: 700;
  color: #b8d4a8;
  font-family: 'SF Mono', Monaco, monospace;
}

.ready-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9fc48f;
  background: rgba(193, 252, 187, 0.1);
  border: 1px solid rgba(193, 252, 187, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.ready-card-right {
  flex-shrink: 0;
}

.ready-play-btn {
  background: #b8d4a8;
  color: #1a1a18;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ready-play-btn:hover {
  background: #c8e4b8;
  transform: scale(1.02);
}

/* Flow Comparison */
.flow-comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.flow-row.traditional-flow {
  opacity: 0.5;
}

.flow-row.melotune-flow {
  background: rgba(193, 252, 187, 0.05);
  border: 1px solid rgba(193, 252, 187, 0.1);
}

.flow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  min-width: 70px;
}

.melotune-flow .flow-label {
  color: #c1fcbb;
}

.flow-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.flow-step {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.flow-step.highlight {
  color: #c1fcbb;
  font-weight: 700;
  background: rgba(193, 252, 187, 0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.melotune-flow .flow-arrow {
  color: rgba(193, 252, 187, 0.4);
}

.difference-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .difference-section {
    padding: 3rem 1rem;
  }

  .difference-headline {
    font-size: 1.75rem;
  }

  .difference-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .ready-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .ready-card-content {
    text-align: center;
  }

  .ready-meta {
    justify-content: center;
  }

  .ready-description {
    font-size: 1rem;
  }

  .flow-row {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .flow-label {
    min-width: auto;
  }

  .flow-steps {
    justify-content: center;
  }

  .flow-step {
    font-size: 0.8rem;
  }
}

/* ==================== BENTO GRID V2 ==================== */
.bento-section {
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Bento Grid V2 - Asymmetric layout */
.bento-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
}

/* Bento Card Base */
.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.bento-card:hover {
  border-color: rgba(193, 252, 187, 0.2);
}

/* ==================== COLLAGE CARD ==================== */
.bento-collage {
  grid-column: 1;
  grid-row: span 2;
  min-height: 480px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.floating-screenshots {
  position: absolute;
  top: 0;
  right: -20px;
  width: 75%;
  height: 100%;
  perspective: 1000px;
}

.float-img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  transition: transform 0.4s ease;
}

.float-1 {
  width: 55%;
  top: 5%;
  right: 10%;
  transform: rotate(-5deg) translateZ(20px);
  z-index: 4;
}

.float-2 {
  width: 50%;
  top: 25%;
  right: 35%;
  transform: rotate(8deg) translateZ(10px);
  z-index: 3;
}

.float-3 {
  width: 45%;
  top: 50%;
  right: 5%;
  transform: rotate(-3deg) translateZ(30px);
  z-index: 2;
}

.float-4 {
  width: 40%;
  top: 65%;
  right: 45%;
  transform: rotate(5deg) translateZ(5px);
  z-index: 1;
}

.bento-collage:hover .float-1 {
  transform: rotate(-8deg) translateZ(40px) translateY(-10px);
}

.bento-collage:hover .float-2 {
  transform: rotate(12deg) translateZ(30px) translateX(-10px);
}

.bento-collage:hover .float-3 {
  transform: rotate(-6deg) translateZ(50px) translateY(-5px);
}

.collage-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  z-index: 10;
}

.collage-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.collage-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  max-width: 280px;
}

/* ==================== VOICE CONTROL CARD ==================== */
.bento-voice-card {
  padding: 1.5rem;
}

.voice-ui-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.mood-dots {
  display: flex;
  gap: 6px;
}

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

.dot-teal { background: #2dd4bf; }
.dot-green { background: #4ade80; }
.dot-yellow { background: #facc15; }
.dot-orange { background: #fb923c; }
.dot-active {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.dot-active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.mini-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.mini-waveform span {
  width: 3px;
  background: #c1fcbb;
  border-radius: 2px;
  animation: waveform 1s ease-in-out infinite;
}

.mini-waveform span:nth-child(1) { height: 8px; animation-delay: 0s; }
.mini-waveform span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.mini-waveform span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.mini-waveform span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.mini-waveform span:nth-child(5) { height: 10px; animation-delay: 0.4s; }

@keyframes waveform {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.mic-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 252, 187, 0.15);
  border-radius: 50%;
  color: #c1fcbb;
}

.bento-voice-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.badge-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #c1fcbb;
  margin-bottom: 0.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #c1fcbb;
  border-radius: 50%;
}

.card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* ==================== STATIONS SHOWCASE CARD ==================== */
.bento-stations-showcase {
  grid-column: span 2;
  min-height: 200px;
  padding: 0;
}

.bento-stations-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  text-align: right;
}

.showcase-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c1fcbb;
  margin-bottom: 0.25rem;
}

.showcase-caption {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.showcase-headline {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* ==================== CHANGELOG TIMELINE CARD ==================== */
.bento-changelog {
  padding: 1.5rem;
}

.changelog-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 1rem;
}

.changelog-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #c1fcbb, #f59e0b, rgba(255, 255, 255, 0.2));
  border-radius: 1px;
}

.changelog-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  position: relative;
}

.changelog-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: -1rem;
  z-index: 1;
}

.changelog-dot.dot-live {
  background: #c1fcbb;
  box-shadow: 0 0 8px rgba(193, 252, 187, 0.6);
}

.changelog-dot.dot-review {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.changelog-dot.dot-dev {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.changelog-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.changelog-version {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'SF Mono', Monaco, monospace;
  color: #fff;
}

.changelog-status {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.status-live {
  background: rgba(193, 252, 187, 0.15);
  color: #c1fcbb;
}

.status-review {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.status-dev {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== EXAMPLES CARD V2 ==================== */
.bento-examples-v2 {
  padding: 1.5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.example-quotes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.example-quotes span {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0.75rem;
  background: rgba(193, 252, 187, 0.05);
  border-left: 2px solid rgba(193, 252, 187, 0.3);
  border-radius: 0 8px 8px 0;
}

/* ==================== PLATFORMS CARD V2 ==================== */
.bento-platforms-v2 {
  padding: 1.5rem;
  text-align: center;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.platform-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  color: #fff;
  transition: background 0.2s;
}

.platform-icon-box:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bento-platforms-v2 h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bento-platforms-v2 p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== PRIVACY CARD V2 ==================== */
.bento-privacy-v2 {
  padding: 1.5rem;
  text-align: left;
  background: linear-gradient(135deg, rgba(193, 252, 187, 0.05) 0%, transparent 100%);
  border-color: rgba(193, 252, 187, 0.12);
}

.privacy-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 252, 187, 0.1);
  border-radius: 14px;
  margin-bottom: 1rem;
  color: #c1fcbb;
}

.bento-privacy-v2 h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bento-privacy-v2 p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== NOT CARD V2 ==================== */
.bento-not-v2 {
  padding: 1.5rem;
}

.not-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.not-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.not-badge {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 100, 100, 0.15);
  border-radius: 50%;
  color: #ff6b6b;
  font-size: 0.65rem;
  font-weight: 700;
}

.not-explain {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ==================== STATS CARD ==================== */
.bento-stats {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #c1fcbb 0%, #7dd87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, #c1fcbb, #7dd87a);
  border-radius: 2px;
}

/* ==================== MOOD PORTRAIT CARD ==================== */
.bento-mood-portrait {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  grid-column: span 1;
  grid-row: span 2;
}

.mood-portrait-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mood-portrait-preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Slideshow animation - 5 images, 20s total cycle (4s per image) */
.mood-portrait-preview .slideshow-img:nth-child(1) { animation: slide1 20s ease-in-out infinite; }
.mood-portrait-preview .slideshow-img:nth-child(2) { animation: slide2 20s ease-in-out infinite; }
.mood-portrait-preview .slideshow-img:nth-child(3) { animation: slide3 20s ease-in-out infinite; }
.mood-portrait-preview .slideshow-img:nth-child(4) { animation: slide4 20s ease-in-out infinite; }
.mood-portrait-preview .slideshow-img:nth-child(5) { animation: slide5 20s ease-in-out infinite; }

@keyframes slide1 {
  0%, 100% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  96% { opacity: 0; }
}

@keyframes slide2 {
  0% { opacity: 0; }
  16% { opacity: 0; }
  20% { opacity: 1; }
  36% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes slide3 {
  0% { opacity: 0; }
  36% { opacity: 0; }
  40% { opacity: 1; }
  56% { opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes slide4 {
  0% { opacity: 0; }
  56% { opacity: 0; }
  60% { opacity: 1; }
  76% { opacity: 1; }
  80% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes slide5 {
  0% { opacity: 0; }
  76% { opacity: 0; }
  80% { opacity: 1; }
  96% { opacity: 1; }
  100% { opacity: 0; }
}

.bento-mood-portrait:hover .mood-portrait-preview img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.mood-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  z-index: 10;
}

.coming-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(54, 194, 205, 0.3) 100%);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #a78bfa;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.mood-portrait-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mood-portrait-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==================== READY PLAYLIST CARD ==================== */
.bento-ready-playlist {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(54, 194, 205, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

.ready-playlist-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #36C2CD 0%, #8B5CF6 100%);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.ready-playlist-icon svg {
  color: #fff;
}

.bento-ready-playlist h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bento-ready-playlist p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Legacy bento classes (keep for compatibility) */
.bento-grid {
  display: grid;
  gap: 1rem;
}

/* Large Card Styling */
.bento-large {
  padding: 2.5rem;
}

.bento-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.bento-headline span {
  display: block;
}

.bento-headline span:last-child {
  background: linear-gradient(135deg, #c1fcbb 0%, #7dd87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Voice Examples Pills */
.voice-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.voice-pill {
  background: rgba(193, 252, 187, 0.1);
  border: 1px solid rgba(193, 252, 187, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.bento-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.bento-description strong {
  color: #c1fcbb;
}

/* Small Card Styling */
.bento-small {
  padding: 1.5rem;
}

.bento-small h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bento-small p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Bento Icons */
.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 252, 187, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #c1fcbb;
}

.bento-icon-x {
  background: rgba(255, 100, 100, 0.1);
  color: #ff6b6b;
}

/* Privacy Card */
.bento-privacy {
  background: linear-gradient(135deg, rgba(193, 252, 187, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border-color: rgba(193, 252, 187, 0.15);
}

.bento-privacy h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bento-privacy p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Feature Cards */
.bento-feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 252, 187, 0.1);
  border-radius: 20px;
  color: #c1fcbb;
}

.bento-feature-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #c1fcbb;
  border-radius: 50%;
}

.feature-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Platform Cards */
.bento-platform {
  position: relative;
  padding: 1.5rem;
  cursor: pointer;
}

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

.platform-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin-bottom: 1rem;
  color: #fff;
}

.bento-platform h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bento-platform p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.platform-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s, transform 0.2s;
}

.bento-platform:hover .platform-arrow {
  color: #c1fcbb;
  transform: translateX(3px);
}

/* Info Card */
.bento-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.info-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c1fcbb;
  margin-bottom: 0.5rem;
}

.info-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ==================== PRICING ==================== */
.pricing-section {
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(40, 40, 40, 0.5) 0%, rgba(20, 20, 20, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.pricing-badge {
  display: inline-block;
  background: #c1fcbb;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-amount .price {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.pricing-cta {
  display: block;
  background: #c1fcbb;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, opacity 0.2s;
}

.pricing-cta:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 4rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  padding: 5rem 1.5rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(193, 252, 187, 0.06) 0%, transparent 50%);
}

.final-headline {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.final-headline span {
  display: block;
}

.final-headline .highlight {
  background: linear-gradient(135deg, #c1fcbb 0%, #7dd87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==================== FOOTER ==================== */
footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer-legal {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin-bottom: 1.5rem !important;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-powered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.powered-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.powered-name {
  font-size: 1rem;
  font-weight: 600;
  color: #c1fcbb;
  text-decoration: none;
  transition: opacity 0.2s;
}

.powered-name:hover {
  opacity: 0.8;
}

/* ==================== MOBILE ==================== */
@media (max-width: 900px) {
  /* Bento Grid V2 - 2 columns on tablet */
  .bento-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .bento-collage {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 400px;
  }

  .bento-stations-showcase {
    grid-column: span 2;
  }

  .collage-text h2 {
    font-size: 2rem;
  }

  .floating-screenshots {
    width: 65%;
  }

  /* Legacy grids */
  .bento-voice {
    grid-template-columns: 1fr;
  }

  .bento-voice .bento-large {
    grid-row: auto;
  }

  .bento-ways {
    grid-template-columns: 1fr;
  }

  .bento-platforms {
    grid-template-columns: 1fr 1fr;
  }

  .bento-platforms .bento-info {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

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

  /* Bento Grid V2 - single column on mobile */
  .bento-grid-v2 {
    grid-template-columns: 1fr;
  }

  .bento-collage {
    grid-column: span 1;
    min-height: 450px;
  }

  .bento-stations-showcase {
    grid-column: span 1;
    min-height: 220px;
  }

  .floating-screenshots {
    width: 85%;
    right: -30px;
  }

  .float-1 {
    width: 60%;
    top: 2%;
    right: 5%;
  }

  .float-2 {
    width: 55%;
    top: 18%;
    right: 25%;
  }

  .float-3 {
    width: 50%;
    top: 35%;
    right: 0%;
  }

  .float-4 {
    width: 45%;
    top: 48%;
    right: 35%;
  }

  .collage-text h2 {
    font-size: 1.75rem;
  }

  .collage-text p {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .voice-ui-preview {
    flex-wrap: wrap;
  }

  .mini-waveform {
    margin-left: 0;
  }

  .bento-section {
    padding: 1rem;
  }

  .bento-card {
    border-radius: 20px;
  }

  .bento-headline {
    font-size: 2rem;
  }

  .voice-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .bento-platforms {
    grid-template-columns: 1fr;
  }

  .bento-platforms .bento-info {
    grid-column: auto;
  }

  .feature-icon-large {
    width: 64px;
    height: 64px;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount .price {
    font-size: 3rem;
  }

  .final-headline {
    font-size: 1.75rem;
  }
}

/* ==================== CONTENT PAGES ==================== */
.content-page {
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.content-page .subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
}

.content-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.content-card:last-child {
  border-bottom: none;
}

.content-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.content-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-card ul,
.content-card ol {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-card li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-card a {
  color: #c1fcbb;
  text-decoration: none;
}

.content-card a:hover {
  text-decoration: underline;
}

/* FAQ items within content cards */
.content-card .faq-item {
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.content-card .faq-item:last-child {
  margin-bottom: 0;
}

.content-card .faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: #fff;
  transition: color 0.2s;
}

.content-card .faq-item summary:hover {
  color: #c1fcbb;
}

.content-card .faq-item summary::-webkit-details-marker {
  display: none;
}

.content-card .faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.content-card .faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #c1fcbb;
}

.content-card .faq-item .faq-answer {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 0;
}

.content-card .faq-item .faq-answer p:last-child,
.content-card .faq-item .faq-answer ul:last-child,
.content-card .faq-item .faq-answer ol:last-child {
  margin-bottom: 0;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* Highlight card for important sections */
.highlight-card {
  background: linear-gradient(135deg, rgba(193, 252, 187, 0.08) 0%, rgba(193, 252, 187, 0.03) 100%);
  border: 1px solid rgba(193, 252, 187, 0.25);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 3rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 252, 187, 0.5), transparent);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 252, 187, 0.1);
  border-radius: 50%;
  color: #c1fcbb;
}

.highlight-card h2 {
  color: #c1fcbb;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.highlight-tagline {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem !important;
}

.highlight-description {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto !important;
  line-height: 1.6;
}
