/* ==========================================================================
   SwipeAway - Product Landing Page Stylesheet
   Design Language: Tactical Editorial, Card-inspired, High Contrast
   Aligned with Actual Expo/React Native App Interface
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Brand Palette */
  --bg-main: #09090B;
  --bg-surface: #141417;
  --bg-card: #18181B;
  --bg-elevated: #27272A;
  
  --text-primary: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-tertiary: #71717A;

  --brand-orange: #F97316;
  --brand-orange-hover: #EA580C;
  --brand-orange-light: rgba(249, 115, 22, 0.15);

  --keep-green: #22C55E;
  --keep-green-bg: rgba(34, 197, 94, 0.15);
  
  --trash-red: #EF4444;
  --trash-red-bg: rgba(239, 68, 68, 0.15);

  --border-subtle: #27272A;
  --border-strong: #3F3F46;
  
  /* Radius constraint: <= 8px as per design spec */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Focus styles for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Typography Utility */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 840px;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background-color: var(--bg-elevated);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Section */
.hero-section {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--brand-orange-light);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-sm);
  color: var(--brand-orange);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--brand-orange);
  display: block;
}

.hero-description {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-cta-group {
  margin-bottom: 1.5rem;
}

.download-note {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Hero Visual & Phone Mockup matching exact App UI */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.phone-frame {
 width: 100%;
  max-width: 350px;
  background-color: #000000;
  border-radius: 28px;
  border: 4px solid #27272A;
  padding: 12px 10px 16px 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
  position: relative;
}

.phone-notch {
  width: 90px;
  height: 14px;
  background-color: #000000;
  border-radius: 0 0 10px 10px;
  margin: -4px auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen {
  background-color: #000000;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

/* Interactive Card Swiper mimicking actual SwipeAway Expo App */
.interactive-swiper {
  width: 100%;
  height: 520px;
  position: relative;
  background-color: #000000;
  display: flex;
  flex-direction: column;
}

/* Real App Header */
.app-header {
  height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000000;
  z-index: 10;
}

.app-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.app-icons-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-icon-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.trash-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--brand-orange);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Swiper Cards Container */
.swiper-cards-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 8px 12px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipe-card {
  position: absolute;
  width: calc(100% - 24px);
  height: calc(100% - 22px);
  background-color: #09090B;
  border-radius: 20px;
  border: 1px solid #27272A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: transform 200ms ease, opacity 200ms ease;
}

.swipe-card:active {
  cursor: grabbing;
}

.card-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.card-date-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 250ms ease;
}

/* Light Mode Overrides for Hero Phone Mockup */
.interactive-swiper.light-mode {
  background-color: #FAFAFA;
}

.interactive-swiper.light-mode .app-header {
  background-color: #FAFAFA;
}

.interactive-swiper.light-mode .app-title {
  color: #09090B;
}

.interactive-swiper.light-mode .app-icon-btn {
  color: #09090B;
}

.interactive-swiper.light-mode .swipe-card {
  background-color: #FFFFFF;
  border-color: #E4E4E7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.interactive-swiper.light-mode .card-date-overlay {
  color: #09090B;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-shadow: none;
}

/* Swipe Indicator Stamps */
.swipe-stamp {
  position: absolute;
  top: 30px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
  z-index: 5;
}

.stamp-keep {
  left: 24px;
  border: 3px solid var(--keep-green);
  color: var(--keep-green);
  transform: rotate(12deg);
  background-color: rgba(34, 197, 94, 0.15);
}

.stamp-trash {
  right: 24px;
  border: 3px solid var(--trash-red);
  color: var(--trash-red);
  transform: rotate(-12deg);
  background-color: rgba(239, 68, 68, 0.15);
}

/* Scroll Cue */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* Section Styling */
.section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Video Demo Section */
.demo-section {
  background-color: var(--bg-surface);
}

.video-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: #000;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 201%; /* 9:16 aspect ratio for mobile screens */
  height: 0;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-controls-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 15;
}

.video-toggle-btn {
  background-color: rgba(9, 9, 11, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-fallback-msg {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* Screenshots Gallery Section */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.screenshot-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.screenshot-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.screenshot-thumb-wrap {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background-color: #000;
  overflow: hidden;
}

.screenshot-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.screenshot-card:hover .screenshot-thumb-wrap img {
  transform: scale(1.03);
}

.screenshot-caption {
  padding: 1rem;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

.screenshot-caption h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.screenshot-caption p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-img-wrap img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
}

.lightbox-details {
  margin-top: 1rem;
  text-align: center;
}

.lightbox-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.lightbox-details p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.lightbox-close-btn,
.lightbox-nav-btn {
  position: absolute;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close-btn {
  top: -50px;
  right: 0;
}

.lightbox-prev-btn {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next-btn {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close-btn:hover,
.lightbox-nav-btn:hover {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* How It Works Section */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.how-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.badge-keep-icon {
  background-color: var(--keep-green-bg);
  color: var(--keep-green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-trash-icon {
  background-color: var(--trash-red-bg);
  color: var(--trash-red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-restore-icon {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.how-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Privacy Section */
.privacy-section {
  background-color: var(--bg-surface);
}

.privacy-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.privacy-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.privacy-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.privacy-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.privacy-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Compatibility Section */
.compat-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.compat-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.compat-info p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.compat-spec-badge {
  background-color: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: right;
}

.spec-title {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin-top: 0.25rem;
}

/* Download CTA Band */
.download-band {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(9, 9, 11, 0) 70%);
  pointer-events: none;
}

.download-band-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.download-band-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--text-primary);
}

.copyright-text {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  width: 100%;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-prev-btn { left: 10px; }
  .lightbox-next-btn { right: 10px; }
}

@media (max-width: 768px) {
  .navbar {
    height: 64px;
  }

  .brand-logo {
    font-size: 1.125rem;
  }

  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .navbar .btn-group {
    width: auto;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .navbar .btn {
    width: auto !important;
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .download-band .btn-group {
    justify-content: center;
    width: 100%;
  }

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

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

  .compat-box {
    flex-direction: column;
    text-align: center;
  }

  .compat-spec-badge {
    text-align: center;
    width: 100%;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 520px) {
  /* On small mobile screens, hide secondary header button to keep navbar sleek */
  .navbar .btn-secondary {
    display: none;
  }

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

  .hero-cta-group .btn,
  .download-band .btn {
    width: 100%;
  }

  .privacy-card {
    padding: 1.5rem;
  }
}

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