/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

html {
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

p.lead {
  font-size: 1.25rem;
}

/* Hero Section */
.hero {
  background-color: #f8f9fa;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero h1 {
  font-size: 2.5rem;
}

/* .hero .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
} */

.hero .btn-success {
  background-color: #2e7d32;
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  color: white;
}

.hero .btn-success:hover {
  background-color: #256428;
}

/* Trusted By Section */
.trusted-by p {
  font-size: 1rem;
  color: #666;
}

/* Features Overview */
.features h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.features p {
  font-size: 1rem;
  color: #555;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .features h3 {
    font-size: 1.75rem;
  }
}

.feature-zoom {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-zoom:hover {
  transform: scale(2);
  z-index: 10;
  position: relative;
}

mark.tapered {
  background-size: 100% 15%;
  background-repeat: repeat-x;
  background-position: left 0 bottom 2px;
  background-image: linear-gradient(181deg, #ffa620 0%, #fba11a 50%, transparent 54%, transparent 100%);
  display: inline-block;
}

mark {
    background: linear-gradient(90deg, rgba(242, 223, 13, 0) 0, rgba(242, 223, 13, 0.75) 5%, rgba(242, 223, 13, 0.25) 95%, rgba(242, 223, 13, 0) 100%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
}
mark {
    padding: .125rem .25rem;
    background-color: var(--pico-mark-background-color);
    color: var(--pico-mark-color);
    vertical-align: baseline;
}

.screenshot-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.875rem;
  text-transform: uppercase;
  background-color: #ffc107;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: rotate(-3deg);
  display: inline-block;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.accordion-button::after {
  display: none !important;
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
}

.accordion-button.collapsed .faq-toggle-icon {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .faq-toggle-icon {
  transform: rotate(45deg); /* transforms + into × */
}