/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Selection styles */
::selection {
  background: rgba(59, 130, 246, 0.2);
  color: #1e40af;
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Top Notification Bar */
.notification-bar {
  background-color: #4c1d95; /* violet-950 */
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.notification-bar button {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
}

.notification-bar button:hover {
  color: #d1d5db; /* gray-300 */
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: black;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
}

@media (min-width: 768px) {
  .site-header .container {
    padding: 1.25rem 2rem;
  }
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-logo {
  height: 5rem;
  width: 5rem;
  border-radius: 1.25rem; /* 20px - App Store style rounded corners */
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .site-logo {
    height: 5.5rem;
    width: 5.5rem;
  }
}

.site-nav {
  display: none;
}

@media (min-width: 768px) {
.site-nav {
  display: flex;
    margin: 0 auto;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.nav-link {
  color: inherit;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

.cta-button {
  background: #0055CC; /* Darker App Store blue for contrast */
  color: white;
  padding: 0.65rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
  letter-spacing: -0.01em;
}

.cta-button:hover {
  background: #0051D5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.2);
}

/* Hero Section */
.hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
  background: #f3f4f6; /* gray-100 */
}

@media (min-width: 768px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}

.hero-intro h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-intro h1 {
    font-size: 4.5rem;
  }
}

.hero-subheadline {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 4rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.25rem;
  }
}

.hero-cta {
  margin-bottom: 2.5rem;
}

.hero-cta .cta-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .hero-cta .cta-button {
    font-size: 1.25rem;
  }
}

/* Reviews Section */
.hero-reviews {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.review-rating {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827; /* gray-900 */
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.25rem;
  color: #fbbf24; /* amber-400 */
}

.review-count {
  font-size: 0.875rem;
  color: #374151; /* gray-700 */
}

@media (min-width: 768px) {
  .review-count {
    display: block;
  }
}

@media (max-width: 767px) {
  .review-count {
    display: none;
  }
}

.app-store-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-store-link img {
  width: 1.25rem;
  height: 1.25rem;
}

/* Two Column Sections */
.two-column-section {
  padding: 4rem 0;
}

.two-column-section:nth-child(even) {
  background: #f5f5f4; /* stone-50 */
}

.two-column-section:nth-child(odd) {
  background: #e5e7eb; /* gray-200 */
}

.two-column-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-column-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.two-column-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .two-column-content h2 {
    font-size: 3rem;
  }
}

.two-column-content p {
  color: #374151; /* gray-700 */
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .two-column-content p {
    font-size: 1.25rem;
  }
}

.two-column-content .cta-button {
  margin-top: 2rem;
}

.two-column-media {
  display: flex;
  justify-content: center;
}

.two-column-media img {
  max-width: 20rem;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .two-column-media img {
    max-width: 24rem;
  }
}

/* Highlights Section */
.highlights {
  padding: 5rem 1rem;
  background: #ffffff;
}

.highlights h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111827;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

.highlights .features-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .highlights .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights .features-grid {
    gap: 2rem;
  }
}

/* Features Section */
.features {
  padding: 4rem 1rem;
  background: #f3f4f6; /* gray-100 */
}

.features h2 {
  font-size: 1.875rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
}

.features h2 span {
  font-weight: 800;
}

.features-grid {
  display: grid;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.feature-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .feature-icon-circle {
    width: 6rem;
    height: 6rem;
  }
}

.feature-icon-circle img,
.feature-emoji {
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .feature-icon-circle img,
  .feature-emoji {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2.25rem;
  }
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .feature-card h3 {
    font-size: 1.375rem;
  }
}

.feature-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .feature-card p {
    font-size: 1rem;
  }
}

/* Features Detailed Section */
.features-detailed {
  padding: 5rem 1rem;
  background: #F9FAFB;
}

.features-detailed h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #111827;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .features-detailed h2 {
    font-size: 2.5rem;
  }
}

.features-detailed-description {
  text-align: center;
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.feature-category {
  margin-bottom: 4rem;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.feature-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .feature-category-title {
    font-size: 1.75rem;
  }
}

.feature-category-description {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-grid-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-grid-icon {
  margin-bottom: 1.25rem;
}

.feature-grid-icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-grid-icon-circle .feature-emoji {
  font-size: 1.75rem;
}

.feature-grid-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .feature-grid-title {
    font-size: 1.25rem;
  }
}

.feature-grid-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.how-it-works {
  background: #f3f4f6; /* gray-100 */
  padding: 4rem 0;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.how-it-works-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937; /* gray-800 */
}

@media (min-width: 768px) {
  .how-it-works-header h2 {
    font-size: 2.5rem;
  }
}

.how-it-works-header p {
  color: #374151; /* gray-700 */
  font-size: 1.125rem;
}

.how-it-works-grid {
  display: grid;
  gap: 2rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
  background: #fef3c7; /* amber-100 */
  color: #f59e0b; /* amber-500 */
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  font-size: 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #4b5563; /* gray-600 */
  margin: 0;
}

.how-it-works-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Screenshots Section */
.screenshots-section {
  padding: 5rem 0;
  background: #ffffff;
}

.screenshots-container {
  margin-bottom: 3rem;
}

.screenshots-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 1.5rem;
}

.screenshots-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
}

.screenshots-scroll::-webkit-scrollbar {
  height: 4px;
}

.screenshots-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
  margin-left: 1rem;
  margin-right: 1rem;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 2px;
}

.screenshot-card {
  flex-shrink: 0;
  width: 280px;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  scroll-snap-align: start;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 607;
  display: block;
}

@media (max-width: 767px) {
  .screenshots-scroll {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: 1.25rem;
    scroll-padding-inline: 1.25rem;
  }

  .screenshot-card {
    width: clamp(240px, 78vw, 320px);
  }
}

@media (min-width: 768px) {
  .screenshots-scroll {
    padding-inline: 1.5rem;
    scroll-padding-inline: 1.5rem;
  }

  @supports ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
    .screenshots-scroll {
      --edge-fade: 2.25rem;
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--edge-fade),
        #000 calc(100% - var(--edge-fade)),
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--edge-fade),
        #000 calc(100% - var(--edge-fade)),
        transparent 100%
      );
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      padding-inline: var(--edge-fade);
      scroll-padding-inline: var(--edge-fade);
    }
  }
}

/* Download Section */
.download-section {
  background: #60a5fa; /* blue-400 */
  color: black;
  padding: 4rem 0;
  text-align: center;
}

.download-section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.download-section p {
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.download-buttons .cta-button {
  background: white;
  color: black;
}

.download-buttons .cta-button:hover {
  background: #f59e0b; /* amber-500 */
  color: black;
}

/* FAQ Section */
.faq-section {
  background: #f4f6fb;
  padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 6rem 1.5rem;
  }
}

.faq-shell {
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .faq-shell {
    max-width: 72rem;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 0.75rem;
}

.faq-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .faq-header h2 {
    font-size: 3rem;
  }
}

.faq-header p {
  color: #4b5563;
  font-size: 1.125rem;
  margin: 0 auto;
  max-width: 32rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: #111827;
}

@media (min-width: 768px) {
  .faq-accordion-trigger {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
  }
}

.faq-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #111827;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.faq-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .faq-accordion-panel {
    padding: 0 2rem;
  }
}

.faq-accordion-panel p,
.faq-answer {
  color: #4b5563;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.faq-accordion-item.is-open .faq-accordion-panel {
  padding-bottom: 1.5rem;
}

.faq-accordion-item.is-open .faq-accordion-icon {
  transform: rotate(180deg);
  background: #111827;
  color: #ffffff;
}

.faq-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq-link:hover {
  background: #f59e0b;
  color: #111827;
  border-color: #111827;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
  gap: 1rem;
    text-align: center;
  }
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Sticky Notification Popup */
.sticky-notification {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 30;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  width: 24rem;
  height: 12.5rem;
}

@media (min-width: 640px) {
  .sticky-notification {
    width: 37.5rem;
    height: 15.625rem;
  }
}

@media (min-width: 768px) {
  .sticky-notification {
  display: flex;
  }
}

.notification-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937; /* gray-800 */
  cursor: pointer;
}

.notification-close:hover {
  color: #4b5563; /* gray-600 */
}

.notification-left {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  width: 33.333333%;
  height: 100%;
}

.notification-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notification-qr img {
  width: 7rem;
  height: 7rem;
  margin-bottom: 0.5rem;
}

.notification-qr p {
  font-size: 0.75rem;
  color: #4b5563; /* gray-600 */
  text-align: center;
  margin: 0;
}

.notification-right {
  background: #f6df83; /* Custom yellow */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  height: 100%;
}

.notification-content h3 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.notification-content h3 span {
  text-decoration: underline;
}

.notification-content p {
  font-size: 1.125rem;
  margin: 0;
}

.notification-content p span {
  font-weight: 600;
}

.notification-content p .bold {
  font-weight: bold;
}

.notification-download {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* QR Code Popup Modal */
/* QR Code Popup Modal */
.qr-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.qr-popup-content {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  max-width: 26rem;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
}

.qr-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6b7280;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.qr-popup-close:hover {
  color: #111827;
}

.qr-popup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.qr-popup-icon {
  background: #E8E0FF;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-popup-icon img {
  width: 2rem;
  height: 2rem;
}

.qr-popup-text {
  flex: 1;
}

.qr-popup-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
  color: #111827;
}

.qr-popup-subtitle {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin: 0;
  color: #6b7280;
}

.qr-popup-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.qr-popup-qr img {
  width: 17rem;
  height: 17rem;
  border-radius: 0.5rem;
}

.qr-popup-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #6b7280;
}

.qr-popup-footer-text {
  color: #6b7280;
}

.qr-popup-store-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.qr-popup-store-link:hover {
  opacity: 0.8;
}

.qr-popup-store-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive adjustments for QR popup */
@media (max-width: 480px) {
  .qr-popup-content {
    padding: 2rem 1.5rem;
  }

  .qr-popup-qr img {
    width: 14rem;
    height: 14rem;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav {
    display: block;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column-grid {
    text-align: center;
  }

  .two-column-content h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .screenshots-section {
    padding: 3rem 0;
  }
}

/* Animation classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.h-full {
  height: 100%;
}

.w-16 {
  width: 4rem; /* 64px */
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.from-white {
  --tw-gradient-from: white;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}

/* Testimonials Section */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.bg-purple-50 { background-color: #f5f3ff; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.bottom-0 { bottom: 0; }
.w-12 { width: 3rem; }
.from-purple-50 { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); }
.via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); }
.flex { display: flex; }
.gap-4 { gap: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.pl-\[48px\] { padding-left: 48px; }
.pr-\[48px\] { padding-right: 48px; }
.bg-white { background-color: #fff; }
.p-5 { padding: 1.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.min-w-\[240px\] { min-width: 240px; }
.max-w-\[240px\] { max-width: 240px; }
.flex-shrink-0 { flex-shrink: 0; }
.border { border-width: 1px; }
.border-purple-100 { border-color: #ede9fe; }
.items-center { align-items: center; }
.mb-2 { margin-bottom: 0.5rem; }
.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }
.text-yellow-400 { color: #facc15; }
.text-gray-600 { color: #4b5563; }
.text-sm { font-size: 0.875rem; }
.leading-relaxed { line-height: 1.625; }
.font-semibold { font-weight: 600; }
.text-gray-700 { color: #374151; }
.flex-nowrap { flex-wrap: nowrap; }

/* Testimonials Section */
.testimonials-section {
  background: #faf5ff;
  padding: 3rem 0;
}

.testimonials-scroll-wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.testimonials-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 max(1rem, env(safe-area-inset-right)) 1.5rem;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(1rem, env(safe-area-inset-left));
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex-shrink: 0;
  min-width: 240px;
  max-width: 240px;
  background: white;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e9d5ff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.testimonial-rating {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.5rem;
}

.star-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #facc15;
}

.testimonial-quote {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 0.5rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  margin: 0;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 4px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: rgba(147, 51, 234, 0.1);
  margin-left: 1rem;
  margin-right: 1rem;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: #9333ea;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .testimonials-scroll-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 5rem 0;
  }

  .testimonials-scroll {
    padding-inline: 1.5rem;
    scroll-padding-inline: 1.5rem;
  }

  @supports ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
    .testimonials-scroll {
      --edge-fade: 2.25rem;
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--edge-fade),
        #000 calc(100% - var(--edge-fade)),
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--edge-fade),
        #000 calc(100% - var(--edge-fade)),
        transparent 100%
      );
      padding-inline: var(--edge-fade);
      scroll-padding-inline: var(--edge-fade);
    }

    .testimonials-scroll::-webkit-scrollbar-track {
      margin-left: 2.25rem;
      margin-right: 2.25rem;
    }
  }
}

@media (min-width: 768px) {
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:block { display: block; }
  .md\:w-24 { width: 6rem; }
  .md\:pl-\[96px\] { padding-left: 96px; }
  .md\:pr-\[96px\] { padding-right: 96px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .screenshots-scroll,
  .testimonials-scroll {
    scroll-behavior: auto;
  }
}
