/** Shopify CDN: Minification failed

Line 154:0 All "@import" rules must come first

**/
/* ============================================================
   Web Interest — Global Styles
   File: assets/wi-global.css
   HOW TO ADD: Shopify Admin → Online Store → Themes → Edit code
   → assets/ folder → Add new asset → paste this file
   ============================================================ */

:root {
  --wi-black:       #0e0e0e;
  --wi-near-black:  #111111;
  --wi-dark:        #1a1a1a;
  --wi-muted:       #888888;
  --wi-white:       #FAFAFA;
  --wi-pure-white:  #ffffff;
  --wi-surface:     #F3F3F3;
  --wi-orange:      #f07e23;
  --wi-orange-dim:  rgba(240,126,35,0.12);
  --wi-orange-dim2: rgba(240,126,35,0.06);
  --wi-body-dark:   #444444;
  --wi-border:      #e8e8e8;
  --wi-radius:      4px;
  --wi-radius-lg:   8px;
  --wi-max-width:   1200px;
}

/* ── Reset only WI elements ── */
.wi-section *, .wi-section *::before, .wi-section *::after {
  box-sizing: border-box;
}
.wi-section { font-family: 'DM Sans', sans-serif; }
.wi-section h1, .wi-section h2, .wi-section h3,
.wi-section h4, .wi-section h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.wi-section p { margin: 0; }
.wi-section a { text-decoration: none; }
.wi-section ul { list-style: none; padding: 0; margin: 0; }

/* ── Shared layout ── */
.wi-wrap {
  max-width: var(--wi-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared typography ── */
.wi-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wi-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.wi-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wi-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.wi-section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--wi-near-black);
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 620px;
}

/* ── Shared buttons ── */
.wi-btn-primary {
  background: var(--wi-orange);
  color: var(--wi-near-black);
  padding: 14px 28px;
  border-radius: var(--wi-radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.wi-btn-primary:hover {
  background: #d96e1a;
  transform: translateY(-2px);
  color: var(--wi-near-black);
}
.wi-btn-outline {
  border: 1.5px solid var(--wi-near-black);
  color: var(--wi-near-black);
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--wi-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.wi-btn-outline:hover {
  background: var(--wi-near-black);
  color: var(--wi-white);
}
.wi-btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--wi-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.wi-btn-outline-light:hover {
  border-color: var(--wi-orange);
  color: var(--wi-orange);
}

/* ── Font imports ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Scroll-reveal utility ── */
.wi-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wi-reveal.wi-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile sticky CTA ── */
.wi-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--wi-orange);
  color: var(--wi-near-black);
  text-align: center;
  padding: 15px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .wi-mobile-sticky { display: block; }
  body { padding-bottom: 52px; }
}

/* ── Pulse animation ── */
@keyframes wi-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes wi-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wi-scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.template-page [id*="sticky-toolbar"], .template-page .halo-toolbar-bottom, .template-page #halo-sticky-toolbar { display: none !important; }