/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Colors */
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);

  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.5);
  --secondary: #ff0080;
  --accent: #00e5ff;
  --success: #10b981;

  --text-main: #ffffff;
  --text-muted: #94a3b8;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientFlow 5s ease infinite;
}

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: white;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--text-main);
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

/* Background Effects */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-2 {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: 0;
  right: -100px;
  z-index: -1;
  pointer-events: none;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-visual {
  position: relative;
  height: auto;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* Audio Showcase Section */
.audio-showcase {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  /* Perspective for 3D transitions */
  perspective: 1000px;
}

.audio-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.audio-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.audio-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.audio-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.audio-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-box {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.audio-feature p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.audio-visual {
  position: relative;
  transition: transform 0.1s linear, opacity 0.1s linear;
  /* Smooth scroll sync */
}

/* Updated Audio Player Card */
.audio-player-card {
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  /* Smooth rounded corners */
  padding: 0;
  /* No padding for full bleed image */
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.album-art-container {
  width: 100%;
  position: relative;
  flex: 1;
  min-height: 350px;
  /* Make it tall and dominant */
}

.album-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(20, 20, 30, 1) 0%, rgba(20, 20, 30, 0) 100%);
  pointer-events: none;
}

.player-top-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.player-tag {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.waveform-container {
  position: absolute;
  bottom: 10px;
  /* Just above the text area transition */
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  z-index: 3;
  opacity: 0.8;
}

.player-controls-area {
  padding: 1.5rem 2rem 2rem;
  background: rgba(20, 20, 30, 1);
  /* Solid back at bottom, blending with gradient */
  margin-top: -1px;
  /* Remove gap */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.track-text {
  text-align: center;
}

.track-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: white;
}

.track-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.wave-bar {
  width: 5px;
  background: white;
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary);
  animation-play-state: paused;
}

.audio-player-card.playing .wave-bar {
  animation-play-state: running;
}

.wave-bar:nth-child(odd) {
  background: var(--primary);
  animation-duration: 1.4s;
}

.wave-bar:nth-child(2n) {
  animation-delay: 0.1s;
}

.wave-bar:nth-child(3n) {
  animation-delay: 0.2s;
}

.wave-bar:nth-child(4n) {
  animation-delay: 0.3s;
}

.player-controls-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.play-btn-large {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
  cursor: pointer;
}

.play-btn-large:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
}

.control-btn-small {
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.control-btn-small:hover {
  color: white;
}

/* Float animation for decorative elements */
.float-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.float-1 {
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.2;
  filter: blur(20px);
}

@keyframes wave {

  0%,
  100% {
    height: 20%;
    opacity: 0.5;
  }

  50% {
    height: 100%;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .audio-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .audio-features-list {
    align-items: center;
  }

  .audio-feature {
    text-align: left;
  }
}

/* Spritz Reader Container */
.spritz-container {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.5rem;
  width: 380px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
  transform: translateY(0);
  /* Resetting float animation for precise control logic */
  animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes subtleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.spritz-display {
  width: 100%;
  height: 120px;
  background: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spritz-word {
  font-family: 'Space Grotesk', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  width: 100%;
  padding: 0 2rem;
}

.spritz-left {
  text-align: right;
}

.spritz-center {
  color: var(--secondary);
  /* Red/Pink highlight */
  padding: 0 2px;
}

.spritz-right {
  text-align: left;
}

.focus-indicator-top,
.focus-indicator-bottom {
  position: absolute;
  width: 2px;
  height: 10px;
  background: var(--secondary);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
}

.focus-indicator-top {
  top: 15px;
}

.focus-indicator-bottom {
  bottom: 15px;
}

.spritz-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.speed-control {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#wpm-display {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: right;
}

/* Custom Range Slider */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 0 10px var(--primary-glow);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}


/* Decorative Cards behind Spritz */
.mockup-card {
  position: absolute;
  /* background: linear-gradient(145deg, rgba(20,20,30,0.9), rgba(10,10,20,0.95)); */
  /* border: 1px solid var(--border-light); */
  border-radius: 24px;
}

.card-2 {
  width: 340px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
  z-index: -1;
  transform: translate(25px, 25px) scale(0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-3 {
  width: 300px;
  height: 200px;
  background: rgba(255, 255, 255, 0.02);
  z-index: -2;
  transform: translate(50px, 50px) scale(0.9);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Features Section (Bento Grid) */
.features {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bento-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bento-icon {
  margin-bottom: auto;
  color: var(--primary);
  width: 48px;
  height: 48px;
}

.bento-icon svg {
  width: 40px;
  height: 40px;
}

.span-2 {
  grid-column: span 2;
}

/* Pricing */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(99, 102, 241, 0.1));
  border-color: var(--primary);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 2.5rem;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
}

.check {
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  margin: 2px 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* Tablet and Mobile Breakpoints */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  nav .btn-primary {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
  }

  .hero-visual {
    margin-top: 3rem;
    height: auto;
    min-height: 100px;
  }

  .spritz-container {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 280px;
    padding: 1.5rem;
    margin: 0 auto;
  }

  .spritz-display {
    min-height: 100px;
    margin-bottom: 1.5rem;
  }

  .spritz-word {
    font-size: 1.8rem;
    padding: 0 1rem;
  }

  .mockup-card {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .span-2 {
    grid-column: span 1;
  }

  .bento-item {
    padding: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .features,
  .pricing {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-col {
    flex: 1 1 45%;
    min-width: 140px;
  }

  .footer-col:first-child {
    flex: 1 1 100%;
    max-width: 100% !important;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .spritz-container {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .spritz-display {
    height: 100px;
    margin-bottom: 1rem;
  }

  .spritz-word {
    font-size: 1.75rem;
  }

  .btn-icon {
    width: 40px;
    height: 40px;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
  }

  .features,
  .pricing {
    padding: 50px 0;
  }

  /* CTA Section Mobile */
  section[style*="padding: 100px 0"] {
    padding: 60px 0 !important;
  }

  .glass[style*="padding: 4rem 2rem"] {
    padding: 2rem 1.5rem !important;
    border-radius: 20px !important;
  }

  .glass h2[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
  }
}

/* Store Buttons */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-store:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-store svg {
  width: 20px;
  height: 20px;
}

.btn-store.highlight {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}