/* ==========================================================================
   Fingrow — One Pager
   Palette: near-black bg, warm gold accent, off-white text
   ========================================================================== */

:root{
  --bg: #0a0908;
  --bg-soft: #121110;
  --card: #16140f;
  --card-border: #2a2620;
  --gold-1: #f2c464;
  --gold-2: #d99a2b;
  --gold-grad: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  --text-hi: #f5f2ea;
  --text-mid: #c9c4b8;
  --text-low: #8a8477;
  --green: #59d98a;

  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text-hi);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:focus-visible{
  outline: 3px solid var(--gold-1);
  outline-offset: 3px;
}
.btn-gold{
  background: var(--gold-grad);
  color: #201503;
  box-shadow: 0 8px 24px rgba(217, 154, 43, 0.28);
}
.btn-gold:hover{ transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 28px rgba(217, 154, 43, 0.38); }
.btn-large{
  padding: 18px 34px;
  font-size: 17px;
}
.btn-small{
  padding: 10px 20px;
  font-size: 14px;
}
.btn-arrow{ transition: transform .18s ease; }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo{ width: 34px; height: 34px; object-fit: contain; }
.brand-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 96px 0 84px;
  overflow: hidden;
  text-align: center;
}
.hero-glow{
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(217,154,43,0.18) 0%, rgba(217,154,43,0) 65%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo{
  width: 220px;
  margin: 0 auto 28px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 0 28px;
}
.hero-points{
  max-width: 640px;
  margin: 0 0 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-points li{
  position: relative;
  padding-left: 30px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-mid);
}
.hero-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold-grad);
  transform: rotate(45deg);
}
.hero-subtitle{
  max-width: 640px;
  margin: 0 0 36px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-mid);
}
.hero-badge{
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text-mid);
  font-size: 14px;
}
.hero-badge strong{ color: var(--text-hi); }
.pulse-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(89, 217, 138, 0.6);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(89, 217, 138, 0.55); }
  70%{ box-shadow: 0 0 0 8px rgba(89, 217, 138, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(89, 217, 138, 0); }
}

/* ---------- Testimonials ---------- */
.testimonials{
  padding: 88px 0 96px;
  background: var(--bg-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.testimonials-head{
  text-align: center;
  margin-bottom: 52px;
}
.eyebrow{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-1);
  margin: 0 0 12px;
}
.testimonials-head h2{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 36px);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.3;
}

/* Floating / marquee rows */
.marquee-wrap{
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-row{
  width: 100%;
  overflow: hidden;
}
.marquee-track{
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}
.marquee-row--left .marquee-track{
  animation: scroll-left 44s linear infinite;
}
.marquee-row--right .marquee-track{
  animation: scroll-right 44s linear infinite;
}
.marquee-row:hover .marquee-track{
  animation-play-state: paused;
}
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@keyframes scroll-right{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}

.t-card{
  flex: 0 0 auto;
  width: min(380px, 82vw);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-stars{
  display: flex;
  gap: 4px;
  color: var(--gold-1);
  font-size: 16px;
}
.t-quote{
  color: var(--text-mid);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}
.t-person{
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a2c12, #1c1509);
  color: var(--gold-1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}
.t-name{ font-weight: 600; font-size: 14.5px; color: var(--text-hi); }
.t-city{ font-size: 13px; color: var(--text-low); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--bg);
  padding-top: 64px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold-1);
  margin: 0 0 8px;
}
.footer-tagline{ color: var(--text-mid); margin: 0 0 16px; }
.footer-operator{ color: var(--text-low); font-size: 14px; line-height: 1.6; margin: 0; }
.footer-heading{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: var(--text-low);
  margin: 0 0 18px;
}
.footer-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list li{ color: var(--text-mid); font-size: 14.5px; }
.footer-links a{
  color: var(--text-mid);
  transition: color .15s ease;
}
.footer-links a:hover{ color: var(--gold-1); }

.footer-disclaimer-wrap{
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 110px;
}
.footer-disclaimer{
  color: var(--text-low);
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 18px;
}
.footer-copyright{
  text-align: center;
  color: var(--text-low);
  font-size: 12.5px;
  margin: 0;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-sticky-cta{
  display: none;
}

@media (max-width: 720px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header-cta{ display: none; }
  .footer-disclaimer-wrap{ padding-bottom: 100px; }

  .mobile-sticky-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    padding: 15px 20px;
    border-radius: 999px;
    background: var(--gold-grad);
    color: #201503;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
}

@media (max-width: 480px){
  .hero{ padding: 72px 0 64px; }
  .hero-logo{ width: 170px; }
  .t-card{ width: 84vw; padding: 22px 20px; }
}
