:root {
  --brand-navy-950: #08111a;
  --brand-navy-900: #101b2a;
  --brand-navy-800: #101b2a;
  --brand-teal-700: #0f878d;
  --brand-teal-600: #0f878d;
  --brand-teal-500: #1acfcb;
  --brand-teal-400: #1acfcb;
  --brand-surface: #f8f9fa;
  --brand-surface-alt: #f8f9fa;
  font-family: 'Rethink Sans', ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
  color: var(--brand-navy-900);
  background-color: var(--brand-surface);
}

body {
  margin: 0;
  font-family: 'Rethink Sans', ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(26, 207, 203, 0.12) 0%, rgba(26, 207, 203, 0) 58%),
    linear-gradient(180deg, #ffffff 0%, var(--brand-surface) 100%);
}

.storefront-section-surface {
  background: transparent;
}

.storefront-hero-surface {
  background: transparent;
  padding-top: 0rem !important;
}

.storefront-page-surface {
  background-color: #ffffff;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%),
    radial-gradient(60% 76% at 4% 4%, rgba(16, 27, 42, 0.16) 0%, rgba(16, 27, 42, 0) 100%),
    radial-gradient(52% 66% at 98% 98%, rgba(26, 207, 203, 0.22) 0%, rgba(26, 207, 203, 0) 100%),
    linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(26, 207, 203, 0.08) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 100vh;
}

.storefront-page-surface.storefront-service-page-surface .storefront-hero-surface + .storefront-section-surface,
.storefront-page-surface.storefront-service-page-surface .storefront-section-surface + .storefront-section-surface,
.storefront-page-surface.storefront-home-page-surface .storefront-hero-surface + .storefront-section-surface,
.storefront-page-surface.storefront-home-page-surface .storefront-section-surface + .storefront-section-surface {
  position: relative;
}

.section-gradient-1 {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.98), rgba(26, 207, 203, 0.08));
  border-radius: 32px;
  box-shadow: 0 25px 70px rgba(16, 27, 42, 0.08);
}

.section-gradient-2 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(26, 207, 203, 0.12));
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(15, 135, 141, 0.14);
}

.section-gradient-3 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
  border-radius: 36px;
}

.badge-gradient-1 {
  background: linear-gradient(120deg, rgba(248, 249, 250, 0.94), rgba(26, 207, 203, 0.12));
  box-shadow: 0 12px 28px rgba(16, 27, 42, 0.15);
}

.badge-gradient-youtube {
  background: linear-gradient(120deg, rgba(254, 226, 226, 0.85), rgba(252, 165, 165, 0.85));
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.28);
}

.badge-gradient-facebook {
  background: linear-gradient(120deg, rgba(219, 234, 254, 0.85), rgba(191, 219, 254, 0.85));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.text-gradient-facebook {
  background-image: linear-gradient(120deg, var(--brand-navy-900), var(--brand-teal-500));
}

.text-gradient-1 {
  background-image: linear-gradient(120deg, var(--brand-navy-900), var(--brand-teal-500));
}

.text-gradient-youtube {
  background-image: linear-gradient(120deg, var(--brand-navy-900), var(--brand-teal-500));
}

.text-gradient-core {
  background-image: linear-gradient(120deg, var(--brand-teal-600), var(--brand-teal-400));
}

.hero-h1-gradient {
  background-image: linear-gradient(135deg, var(--brand-navy-900), var(--brand-teal-500));
}

.button-shine-gradient {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.group:hover .button-shine-gradient {
  opacity: 0;
}

.fade-in {
  animation: fade-in 0.35s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-motion-piece {
  --motion-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay);
  will-change: opacity, transform, filter;
}

.home-motion-piece[data-variant='slide-left'] {
  transform: translate3d(56px, 18px, 0) scale(0.98);
}

.home-motion-piece[data-variant='slide-right'] {
  transform: translate3d(-56px, 18px, 0) scale(0.98);
}

.home-motion-piece[data-variant='pop'] {
  transform: translate3d(0, 22px, 0) scale(0.9);
  filter: blur(10px);
}

.home-motion-piece[data-variant='float'] {
  transform: translate3d(0, 34px, 0) scale(0.95) rotate(-3.5deg);
  filter: blur(10px);
}

.home-motion-piece[data-variant='line'] {
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  filter: none;
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay);
}

.home-motion-piece.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-motion-piece {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.arrow-right {
  width: 18px;
  height: 3px;
  background: linear-gradient(90deg, rgba(26, 207, 203, 0.85), rgba(26, 207, 203, 0));
  border-radius: 9999px;
  position: relative;
  margin: 3px 0;
}

.arrow-right::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(26, 207, 203, 0.95);
  border-right: 2px solid rgba(26, 207, 203, 0.95);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

::selection {
  background: rgba(26, 207, 203, 0.18);
  color: var(--brand-navy-900);
}

.card-wrapper,
.card2-wrapper {
  position: relative;
}

.card-wrapper > *,
.card2-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Ensure embedded payment iframes remain interactive. */
#revolut-card-field,
#revolut-card-field * {
  pointer-events: auto;
}

#revolut-card-field {
  isolation: isolate;
}

#revolut-card-field iframe {
  pointer-events: auto !important;
}

.feature-marquee {
  position: relative;
  overflow: hidden;
  --feature-marquee-fade-color: rgba(255, 255, 255, 0.95);
}

.feature-marquee::before,
.feature-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 1;
}

.feature-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--feature-marquee-fade-color), rgba(255, 255, 255, 0));
}

.feature-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--feature-marquee-fade-color), rgba(255, 255, 255, 0));
}

.feature-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: feature-marquee-scroll 28s linear infinite;
}

.feature-marquee__track:hover {
  animation-play-state: paused;
}

.feature-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

@keyframes feature-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-marquee__track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transform: translateX(0);
  }
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.app-packages__tabs {
  scrollbar-width: none;
}

.app-packages__tabs::-webkit-scrollbar {
  display: none;
}

.app-packages__item .badge-text {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.app-packages__item .badge-text .char {
  display: inline-block;
  animation: app-packages-char-wave var(--duration, 2s) ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

@keyframes app-packages-char-wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}
