/* ============================================================
   Quickhop, LLC — quickhop.com
   Navy/blue company site built to Carl's two-tone QUICKHOP mark
   (navy "QUICK", bright blue "HOP"). Montserrat display,
   Figtree text. No JS, no build step. Tokens in :root.
   ============================================================ */

:root {
  --white: #FFFFFF;
  --ground: #F7F9FD;
  --navy: #1B2447;
  --navy-2: #2A3C77;
  --blue: #3C7BE0;
  --blue-deep: #2F63BC;
  --blue-tint: #EAF1FC;
  --slate: #55607A;
  --line: #E3E8F2;
  --max: 1000px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "Figtree", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

a { color: var(--blue-deep); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* --- Load animation --- */
@keyframes lift { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.anim { animation: lift .7s cubic-bezier(.2, .7, .2, 1) both; }
.a2 { animation-delay: .12s; }
.a3 { animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .anim { animation: none; } }

/* --- Brand mark: navy QUICK + blue HOP --- */
.brand {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.brand .hop { color: var(--blue); }

/* --- Top bar --- */
.topbar { border-bottom: 1px solid var(--line); background: var(--white); }
.topbar-inner {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 18px;
  padding-top: 22px; padding-bottom: 22px;
}
.topbar nav { display: flex; gap: 26px; font-size: 0.95rem; flex-wrap: wrap; }
.topbar nav a { color: var(--navy); font-weight: 600; }
.topbar nav a:hover { color: var(--blue-deep); text-decoration: none; }

/* --- Hero --- */
.hero {
  background:
    radial-gradient(760px 340px at 88% -60px, rgba(60, 123, 224, 0.10), transparent 65%),
    var(--ground);
  border-bottom: 1px solid var(--line);
}
.hero-inner { padding-top: 88px; padding-bottom: 88px; }
.hero-mark { font-size: clamp(3rem, 10vw, 6rem); display: block; margin: 0; }

/* --- Section scaffolding --- */
section.body-block { padding-top: 84px; }
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.section-head .bar { width: 34px; height: 6px; border-radius: 3px; background: var(--blue); flex: 0 0 auto; }
.section-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.01em;
}
/* --- Product card --- */
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 42px 34px;
  max-width: 760px;
  box-shadow: 0 20px 50px -30px rgba(27, 36, 71, 0.35);
}
.product-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.product-mascot { display: block; flex: 0 0 auto; }
/* Proof Hunter nameplate — matches the app: Inter 700 uppercase over a rule */
.product-name {
  margin: 0;
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #12130F;
  padding-bottom: 3px;
  border-bottom: 3px solid #12130F;
}
.product-sub { margin: 8px 0 0; font-weight: 600; color: var(--blue-deep); }
.product-desc { margin: 0 0 18px; max-width: 62ch; color: var(--slate); }
.product-points { margin: 0 0 26px; padding: 0 0 0 2px; list-style: none; }
.product-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--slate);
}
.product-points li::before {
  content: "";
  position: absolute; left: 0; top: 0.52em;
  width: 12px; height: 6px; border-radius: 3px;
  background: var(--blue);
}
.product-points strong { color: var(--navy); }
.product-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.app-badge img { display: block; }
.product-meta {
  margin: 22px 0 0; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem; color: var(--slate);
}

/* --- Company / contact --- */
.contact-card {
  background: var(--blue-tint);
  border: 1px solid rgba(60, 123, 224, 0.25);
  border-radius: 20px;
  padding: 36px 40px;
  max-width: 760px;
}
.contact-copy { margin: 0; max-width: 58ch; color: var(--slate); }
.contact-copy strong { color: var(--navy); }
.email {
  display: inline-block; margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem); font-weight: 800;
  color: var(--navy);
}
.email:hover { color: var(--blue-deep); text-decoration: none; }

/* --- Footer --- */
.site-footer {
  margin-top: 104px;
  background: var(--navy);
  color: #C9D4EC;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding-top: 34px; padding-bottom: 44px;
}
.footer-brand { font-size: 1.15rem; color: var(--white); }
.footer-brand .hop { color: var(--blue); }
.site-footer p { margin: 0; font-size: 0.9rem; }
