html,
body {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #FAFBFC;
  color: #111827;
}

.font-display,
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
}

::selection {
  background: #FF3B30;
  color: #fff;
}

:focus-visible {
  outline: 3px solid #FF3B30;
  outline-offset: 2px;
}

/* Atmospheric page wash */
.page-wash {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 59, 48, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 30%, rgba(16, 185, 129, 0.06), transparent 50%),
    #FAFBFC;
}

/* Ticket punch */
.ticket {
  position: relative;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #FAFBFC;
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  z-index: 2;
}

.ticket::before { left: -8px; }
.ticket::after { right: -8px; }

.ticket-dark::before,
.ticket-dark::after {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.12);
}

.ticket-dash {
  background-image: repeating-linear-gradient(90deg, #E5E7EB 0 7px, transparent 7px 14px);
}

.ticket-dash-dark {
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 7px, transparent 7px 14px);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.snap-x-mand { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }

/* Motion */
@keyframes dsd-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dsd-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dsd-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.rise {
  animation: dsd-rise 0.7s ease both;
}

.rise-delay {
  animation: dsd-rise 0.7s 0.12s ease both;
}

.rise-delay-2 {
  animation: dsd-rise 0.7s 0.24s ease both;
}

.hero-mesh {
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(255, 59, 48, 0.28), transparent 58%),
    radial-gradient(ellipse 45% 40% at 15% 70%, rgba(16, 185, 129, 0.16), transparent 55%),
    #0B1220;
}

.deal-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(17, 24, 39, 0.28);
  border-color: rgba(255, 59, 48, 0.35);
}

.js-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobileNav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

#mobileNav.is-open {
  max-height: 420px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
