/** Shopify CDN: Minification failed

Line 253:31 Unexpected "2026"

**/
/* ============================================================
   DEFY SPORTS 2026 — Base CSS (Scratch Build)
   Design tokens · Reset · Typography · Buttons · Utilities
   Reference: defydemo.scaleworks.ie
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --defy-black:       #0a0a0a;
  --defy-dark:        #111111;
  --defy-dark-2:      #1a1a1a;
  --defy-dark-3:      #242424;
  --defy-green:       #2da137;
  --defy-green-dark:  #228a2d;
  --defy-green-light: #3dbe4a;
  --defy-white:       #ffffff;
  --defy-grey-1:      rgba(255,255,255,0.06);
  --defy-grey-2:      rgba(255,255,255,0.12);
  --defy-grey-3:      rgba(255,255,255,0.4);
  --defy-grey-4:      rgba(255,255,255,0.7);

  --defy-font-display: 'Bebas Neue', sans-serif;
  --defy-font-body:    'Inter', sans-serif;

  --defy-radius:    4px;
  --defy-radius-lg: 8px;

  --defy-ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --defy-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --defy-page-width: 1440px;
  --defy-page-pad:   clamp(16px, 4vw, 48px);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body.defy-body {
  background: var(--defy-black);
  color: var(--defy-white);
  font-family: var(--defy-font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Page width container ──────────────────────────────────── */
.defy-container {
  max-width: var(--defy-page-width);
  margin: 0 auto;
  padding-left: var(--defy-page-pad);
  padding-right: var(--defy-page-pad);
}

/* ── Typography ────────────────────────────────────────────── */
.defy-display {
  font-family: var(--defy-font-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.defy-label {
  font-family: var(--defy-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--defy-grey-3);
}

/* ── Buttons ───────────────────────────────────────────────── */
.defy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--defy-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--defy-radius);
  transition: all 160ms var(--defy-ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.defy-btn:active { transform: scale(0.97); }

.defy-btn--primary {
  background: var(--defy-green);
  color: var(--defy-white);
  border: 2px solid var(--defy-green);
}
.defy-btn--primary:hover {
  background: var(--defy-green-dark);
  border-color: var(--defy-green-dark);
}

.defy-btn--outline {
  background: transparent;
  color: var(--defy-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.defy-btn--outline:hover {
  border-color: var(--defy-white);
  background: rgba(255,255,255,0.06);
}

.defy-btn--dark {
  background: var(--defy-dark-2);
  color: var(--defy-white);
  border: 2px solid var(--defy-grey-2);
}
.defy-btn--dark:hover {
  border-color: var(--defy-green);
  color: var(--defy-green);
}

/* ── Section spacing ───────────────────────────────────────── */
.defy-section {
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.defy-section--sm {
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
}

/* ── Section heading ───────────────────────────────────────── */
.defy-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--defy-green);
  margin-bottom: 16px;
}

.defy-section__heading {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--defy-white);
  margin-bottom: 24px;
}

.defy-section__subtext {
  font-size: 16px;
  color: var(--defy-grey-4);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Divider ───────────────────────────────────────────────── */
.defy-divider {
  height: 1px;
  background: var(--defy-grey-1);
  border: none;
}

/* ── Badge / tag ───────────────────────────────────────────── */
.defy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--defy-green);
  border: 1px solid var(--defy-green);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--defy-white);
}

.defy-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--defy-green);
  border-radius: 50%;
  animation: defy-pulse 2s ease-in-out infinite;
}

@keyframes defy-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ── Visually hidden (accessibility) ──────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Loading skeleton ──────────────────────────────────────── */
@keyframes defy-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.defy-skeleton {
  background: linear-gradient(90deg, var(--defy-dark-2) 25%, var(--defy-dark-3) 50%, var(--defy-dark-2) 75%);
  background-size: 200% 100%;
  animation: defy-shimmer 1.5s infinite;
  border-radius: var(--defy-radius);
}

/* ── Responsive helpers ────────────────────────────────────── */
@media (max-width: 767px) {
  .defy-hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .defy-hide-desktop { display: none !important; }
}

/* ── Main content offset for sticky header ─────────────────── */
.defy-main {
  min-height: 60vh;
}

* ── Mobile fixes — July 2026 ──────────────────────────────── */
@media (max-width: 767px) {
  /* Hide stats block on mobile */
  .defy-hero__stats { display: none !important; }

  /* Hide green ticker on mobile */
  .defy-hero__ticker { display: none !important; }
  /* Move progress bar up since ticker is hidden */
  .defy-hero__progress { bottom: 0; }

  /* Logo size on mobile */
  .defy-header__logo img { height: 22px !important; }

  /* Guaranteed Irish badge — smaller and less intrusive */
  .defy-hero__gi-badge img { height: 28px !important; }
  .defy-hero__gi-badge { top: 12px !important; }

  /* Hero heading — tighter on small screens */
  .defy-hero__heading { font-size: clamp(38px, 11vw, 60px) !important; margin-bottom: 12px; }

  /* Hero sub text — tighter */
  .defy-hero__sub { font-size: 13px; margin-bottom: 20px; }

  /* Hero badge spacing */
  .defy-hero__badge { margin-bottom: 16px; }
}

/* ── Mobile fixes v2 — July 2026 ───────────────────────────── */
@media (max-width: 767px) {
  /* Hide stats block on mobile */
  .defy-hero__stats { display: none !important; }

  /* Hide green ticker on mobile */
  .defy-hero__ticker { display: none !important; }
  .defy-hero__progress { bottom: 0 !important; }

  /* Hide Guaranteed Irish badge on mobile */
  .defy-hero__gi-badge { display: none !important; }

  /* Hide eyebrow badge ("NOW LIVE — CLUB SHOPS") on mobile */
  .defy-hero__badge { display: none !important; }

  /* Logo smaller on mobile */
  .defy-header__logo img { height: 22px !important; }

  /* Hero heading — LARGER on mobile, full width */
  .defy-hero__heading {
    font-size: clamp(52px, 14vw, 72px) !important;
    margin-bottom: 10px !important;
    line-height: 0.92 !important;
  }

  /* Hero sub text — tighter */
  .defy-hero__sub {
    font-size: 14px !important;
    margin-bottom: 24px !important;
    max-width: 100% !important;
  }

  /* CTA buttons — stack vertically, full width, with more space above dots */
  .defy-hero__ctas {
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 32px !important;
  }
  .defy-hero__ctas .defy-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  /* Dots — move up so they don't overlap buttons */
  .defy-hero__dots {
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Hero content — more padding at bottom to clear dots */
  .defy-hero__content {
    padding-bottom: 72px !important;
  }

  /* Hide AI chat widget on mobile */
  #defy-chat-root { display: none !important; }
}
