/* ═══════════════════════════════════════════════════
   GigRadar DFY — Landing Page Styles
   SAFE TO EDIT: This file contains only visual styles.
   No tracking, forms, or business logic here.
   ═══════════════════════════════════════════════════ */

*, *::before, *::after {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html { scroll-behavior: smooth; }
body { color: rgb(45,51,61); background: #ffffff; }

/* ── GigRadar brand color system — light mode ─────
   Legacy blue palette matching gigradar.io
───────────────────────────────────────────────── */
:root {
  --accent:        #216BEF;
  --accent-hover:  #1852D3;
  --accent-lt:     #378AFA;
  --accent-dim:    rgba(33, 107, 239, 0.07);
  --accent-border: rgba(33, 107, 239, 0.18);
  --accent-glow:   rgba(93, 173, 253, 0.12);
  --page-bg:       #ffffff;
  --section-bg:    #EDF3F9;
  --card-bg:       #ffffff;
  --border:        rgb(214,222,233);
  --text:          rgb(45,51,61);
  --text-muted:    rgb(55,65,80);
  --text-dim:      rgb(90,100,115);
  --navy:          #1C3E8C;
  --navy-deep:     #142e6b;
}

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }
.marquee-track { animation: marquee 36s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

.hero-glow {
  background: radial-gradient(ellipse 80% 55% at 50% -8%, rgba(93,173,253,0.22) 0%, rgba(93,173,253,0.06) 40%, transparent 70%);
}

.fade-edges {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.modal-backdrop { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

[x-cloak] { display: none !important; }

.guarantee-badge {
  background: rgba(33,107,239,0.05);
  border: 1.5px solid rgba(33,107,239,0.22);
  backdrop-filter: blur(8px);
}

.row-highlight td { background: rgba(33, 107, 239, 0.04); }

button, a { transition: all 150ms ease; }

.video-wrapper { position: relative; width: 100%; padding-bottom: 67.74%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 12px; }

.card-lift { transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.card-lift:hover { transform: translateY(-4px); border-color: rgba(33,107,239,0.22); box-shadow: 0 16px 40px rgba(33,107,239,0.10); }

.carousel-track { display: flex; transition: transform 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-item { flex: 0 0 100%; }

.btn-cta {
  background: linear-gradient(180deg, #5DADFD 0.56%, #1852D3 99.26%);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  display: inline-block;
  transition: opacity 150ms ease, box-shadow 150ms ease, transform 100ms ease;
  box-shadow: 0 4px 16px rgba(33,107,239,0.20);
}
.btn-cta:hover { opacity: 0.92; box-shadow: 0 8px 28px rgba(33,107,239,0.35); transform: translateY(-1px); }
.btn-cta:active { transform: scale(0.98); }

.btn-ghost {
  border: 1.5px solid rgb(214,222,233);
  color: #216BEF;
  font-weight: 600;
  border-radius: 10px;
}
.btn-ghost:hover { border-color: #378AFA; color: #1852D3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #216BEF;
  background: rgba(33,107,239,0.06);
  border: 1px solid rgba(33,107,239,0.15);
  border-radius: 100px;
  padding: 5px 14px;
}

.gradient-text {
  background: radial-gradient(50.06% 40.72% at 49.98% 54.15%, #5DADFD 0%, #216BEF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-gold { color: #216BEF; text-shadow: 0 0 28px rgba(33,107,239,0.18); }

.star { color: #f59e0b; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f4f8ff; }
::-webkit-scrollbar-thumb { background: #BEDEFF; border-radius: 2px; }

.section-rule { border-top: 1px solid rgba(214,222,233,0.6); }

.team-img { object-fit: cover; object-position: center top; width: 100%; height: 100%; position: absolute; inset: 0; }

.prob-num {
  font-size: 20px;
  font-weight: 800;
  color: rgba(33,107,239,0.30);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 36px;
}

.cmp-th { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: #6B86C6; }

.logo-pill {
  flex-shrink: 0;
  height: 32px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-pill img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.45;
  transition: opacity 150ms ease;
}
.logo-pill:hover img { opacity: 0.80; }

/* ── Scroll reveal system — content visible by default ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-visible,
  .reveal-left.is-visible,
  .reveal-right.is-visible,
  .reveal-scale.is-visible {
    opacity: 1;
    transform: none;
  }
  /* Stagger children */
  .reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger > *:nth-child(2) { transition-delay: 80ms; }
  .reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
  .reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
  .reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
}

/* Video browser frame */
.browser-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214,222,233,0.8);
  box-shadow: 0 24px 64px rgba(33,107,239,0.15), 0 8px 24px rgba(0,0,0,0.06);
}
.browser-frame-bar {
  background: #f0f4f8;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(214,222,233,0.6);
}
.browser-frame-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

/* Timeline step connector */
.timeline-line {
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(33,107,239,0.25) 0%, rgba(33,107,239,0.05) 100%);
}

/* Subtle CTA pulse */
@keyframes subtle-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(33,107,239,0.20); }
  50% { box-shadow: 0 4px 24px rgba(33,107,239,0.35); }
}
.cta-pulse { animation: subtle-pulse 3s ease-in-out infinite; }
