/* Satoshi, self-hosted so a paid landing page never waits on a third-party CDN */
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-400.woff2') format('woff2');
             font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-500.woff2') format('woff2');
             font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-700.woff2') format('woff2');
             font-weight:700; font-style:normal; font-display:swap; }

* { box-sizing: border-box; }
html { overflow-x: clip; }
body { font-family: 'Satoshi', system-ui, sans-serif; margin: 0; font-size: 17px; line-height: 1.7;
       color: #071019; -webkit-font-smoothing: antialiased; overflow-x: clip; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-track { animation: ticker 30s linear infinite; display: inline-flex; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes seal-spin { to { transform: rotate(360deg); } }
.seal { animation: seal-spin 26s linear infinite; transform-origin: 50% 50%; }
@media (prefers-reduced-motion: reduce) { .seal { animation: none; } }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.pulse-dot { animation: pulse-dot 1.8s ease-in-out infinite; }
.chip.active { background: #00BEFF; border-color: #00BEFF; color: #fff; }
.chip:hover:not(.active) { border-color: rgba(0,190,255,0.55); color: rgba(255,255,255,0.9); }

/* ---- Surface system: one radius, two-layer elevation, one hover ---- */
.card { background:#fff; border-radius:18px; border:1px solid #E4EBF1;
        box-shadow:0 1px 2px rgba(7,16,25,.04), 0 12px 32px -14px rgba(7,16,25,.16);
        transition:transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s, border-color .28s; }
.card:hover { transform:translateY(-4px); border-color:#BFE6F9;
              box-shadow:0 1px 2px rgba(7,16,25,.05), 0 24px 48px -16px rgba(7,16,25,.24); }
.tile { border-radius:18px; overflow:hidden;
        transition:transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s; }
.tile:hover { transform:translateY(-4px); box-shadow:0 24px 48px -18px rgba(7,16,25,.4); }
.tile img { transition:transform .6s cubic-bezier(.22,1,.36,1); }
.tile:hover img { transform:scale(1.045); }
.field { border-radius:12px; }
.qmark { font-family:"Bebas Neue","Barlow Condensed",sans-serif; color:#00BEFF; opacity:.16; line-height:.7; }
.stars { color:#FFB300; letter-spacing:2px; }
.av { width:38px; height:38px; border-radius:50%; display:flex; align-items:center;
      justify-content:center; font-weight:800; font-size:14px; flex-shrink:0; }

/* ---- Header trust marks: sit on the bar, no chips ---- */
.trustmark { display:inline-flex; align-items:center; gap:10px; text-decoration:none;
             transition:opacity .2s; }
.trustmark:hover { opacity:.72; }
.tm-tile { width:34px; height:34px; border-radius:8px; background:#fff; flex-shrink:0;
           display:flex; align-items:center; justify-content:center; overflow:hidden; }
.tm-tile img { width:30px; height:auto; }
.tm-rule { width:1px; height:30px; background:rgba(255,255,255,0.14); flex-shrink:0; }

/* ---- Scroll reveal ---- */
.reveal { opacity:0; transform:translateY(16px);
          transition:opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1 !important; transform:none !important; } }

/* ---- Button system: one height, pill radius, white type on cyan ---- */
.btn-primary, .btn-ghost, .callbtn {
  display:inline-flex; align-items:center; justify-content:center;
  height:54px; border-radius:999px; text-decoration:none; white-space:nowrap;
}
.btn-primary, .btn-ghost { padding:0 34px; }
.btn-primary { background:#00BEFF; color:#fff; border:1px solid #00BEFF; }
.btn-primary:hover { background:#33CBFF; border-color:#33CBFF; }
.btn-sm { height:44px; padding:0 22px; }
.btn-block { display:flex; width:100%; }

/* Call button: secondary to the quote CTA */
.callbtn { padding:0; overflow:hidden; border:1px solid rgba(255,255,255,0.20);
           transition:border-color .2s, background .2s; }
.callbtn:hover { border-color:#00BEFF; background:rgba(0,190,255,0.06); }
.callbtn-ic { display:flex; align-items:center; justify-content:center;
              width:54px; align-self:stretch; background:#00BEFF; color:#fff; flex-shrink:0; }
.callbtn-tx { padding:0 28px 0 18px; }
.callbtn-lbl { display:block; font-size:10px; font-weight:700; letter-spacing:2.2px;
               text-transform:uppercase; line-height:1.3; color:#00BEFF; }
.callbtn-num { display:block; font-size:20px; font-weight:800; letter-spacing:.3px;
               line-height:1.25; color:#fff; }
.callbtn-sm { height:44px; }
.callbtn-sm .callbtn-ic { width:44px; }
.callbtn-sm .callbtn-tx { padding:0 20px 0 14px; }
.callbtn-sm .callbtn-num { font-size:16px; }
.callbtn-sm .callbtn-lbl { font-size:9px; letter-spacing:1.8px; }
.callbtn-sm .callbtn-ic svg { width:18px; height:18px; }
.callbtn-icon { border-radius:999px; }
.callbtn-icon { display:flex; align-items:center; justify-content:center; width:42px; height:42px;
                background:#00BEFF; color:#071019; flex-shrink:0; }
.callbtn-icon:hover { background:#5AD5FF; }

/* Secondary action */
.btn-ghost { border:1px solid rgba(255,255,255,0.35); color:#fff; background:transparent; }
.btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,0.08); }

/* ---- Responsive helpers ---- */
.hero-shell { min-height:0; }
.promo-shell { min-height:0; }
.hero-title {
  font-size: clamp(44px, 11.5vw, 124px);
  line-height: 0.88;
  letter-spacing: -2px;
}
.hero-kicker {
  font-size: clamp(16px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: 2px;
}
.promo-title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.92;
  letter-spacing: -1px;
}
.cta-row { display:flex; flex-wrap:wrap; gap:12px; align-items:stretch; }
.lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.75; }

@media (max-width: 379px) {
  .btn-sm { height:40px; padding:0 14px; }
  header .logo { height:26px; }
}

@media (max-width: 639px) {
  .cta-row { flex-direction:column; }
  .cta-row > .btn-primary,
  .cta-row > .callbtn { width:100%; }
  .cta-row > .callbtn { justify-content:flex-start; }
  .callbtn-num { font-size:18px; }
  .callbtn-tx { padding:0 18px 0 14px; }
  .stats-label { letter-spacing:1.2px; font-size:10px; }
  .stats-value { white-space:normal !important; }
}

@media (min-width: 1024px) {
  .hero-shell { min-height:580px; }
  .promo-shell { min-height:560px; }
}

@media (hover: none) {
  .card:hover, .tile:hover { transform:none; }
  .tile:hover img { transform:none; }
}

/* ---- Hub landing (index) ---- */
.hub-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7,16,25,0.72) 0%, rgba(7,16,25,0.82) 45%, rgba(7,16,25,0.94) 100%),
    linear-gradient(90deg, rgba(0,55,77,0.35) 0%, transparent 55%);
}
.hub-review {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.hub-review:hover { background: rgba(255,255,255,0.12); border-color: rgba(0,190,255,0.35); }
.hub-rule {
  width: 56px; height: 3px; border-radius: 999px; background: #00BEFF;
}
.hub-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 28px; border-radius: 999px;
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: 1.6px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, background .2s, border-color .2s;
}
.hub-cta-primary {
  background: #00BEFF; color: #fff; border: 1px solid #00BEFF;
  box-shadow: 0 10px 28px -8px rgba(0,190,255,0.65);
}
.hub-cta-primary:hover { background: #33CBFF; border-color: #33CBFF; transform: translateY(-2px); }
.hub-cta-secondary {
  background: #00374D; color: #fff; border: 1px solid rgba(0,190,255,0.35);
  box-shadow: 0 10px 28px -10px rgba(0,55,77,0.8);
}
.hub-cta-secondary:hover { background: #005B7A; border-color: #00BEFF; transform: translateY(-2px); }
.hub-cta-ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28);
}
.hub-cta-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.hub-fade {
  opacity: 0; transform: translateY(14px);
  animation: hub-in .7s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes hub-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hub-fade { opacity: 1; transform: none; animation: none; }
  .hub-cta:hover { transform: none; }
}

/* Quote form status / loader / success */
.quote-status { font-size: 14px; font-weight: 600; text-align: center; margin-top: 4px; }
.quote-status.is-ok { color: #7EE0FF; }
.quote-status.is-err { color: #FF8F8F; }
.quote-submit-btn { position: relative; gap: 10px; }
.quote-submit-btn[disabled] { opacity: .75; cursor: wait; }
.quote-btn-loading { display: none; align-items: center; justify-content: center; gap: 10px; }
.quote-submit-btn.is-loading .quote-btn-label { display: none; }
.quote-submit-btn.is-loading .quote-btn-loading { display: inline-flex; }
.quote-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: quote-spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes quote-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .quote-spinner { animation: none; border-top-color: rgba(255,255,255,0.35); }
}
.quote-success {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 280px; text-align: center; padding: 8px 0;
}
.quote-success-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(0,190,255,0.15);
  border: 1px solid rgba(0,190,255,0.45);
  display: flex; align-items: center; justify-content: center; color: #00BEFF;
}
.quote-success h3 {
  margin: 0 0 10px; font-family: "Bebas Neue","Barlow Condensed",sans-serif;
  font-size: clamp(28px,4vw,40px); letter-spacing: -0.5px; color: #fff; text-transform: uppercase;
}
.quote-success p {
  margin: 0; color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.7; font-weight: 500;
}
