/** Shopify CDN: Minification failed

Line 1151:17 Expected identifier but found whitespace
Line 1151:24 Unexpected ";"

**/
/* ==========================================================================
   BLAST RADIO — THEME STYLESHEET
   --------------------------------------------------------------------------
   Design tokens are defined in theme.liquid (inline, before paint).
   This file contains all component styles that consume those tokens.
   The page is light-mode locked at the layout level (see theme.liquid).
   ========================================================================== */


/* ==========================================================================
   BASE
   ========================================================================== */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Helvetica Neue', Helvetica, 'Liberation Sans', Arial, sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 17px;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }


/* ==========================================================================
   TYPE SCALE
   ========================================================================== */
.display     { font-weight: 700; line-height: 0.92; letter-spacing: -0.055em; }
.display-xl  { font-size: clamp(56px, 9.2vw, 148px); }
.display-lg  { font-size: clamp(46px, 7vw, 108px); }
.display-md  { font-size: clamp(36px, 5.2vw, 80px); }

.it-red, em {
  color: var(--red);
  font-style: italic;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.section-tag {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}
.section-tag .num { color: var(--red); }

.lede {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 60ch;
  letter-spacing: -0.01em;
}


/* ==========================================================================
   LAYOUT PRIMITIVES
   ========================================================================== */
main#MainContent {
  padding-top: 64px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: clamp(72px, 10vw, 144px) 0;
  border-top: 1px solid var(--rule);
}
section.flush { padding-top: 0; border-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: end;
  }
}
.section-head h2 { max-width: 16ch; }


/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-brand img { height: 26px; width: auto; }
.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a { color: var(--ink-2); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red); }
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.nav-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
}
@media (min-width: 900px) { .nav-mobile-toggle { display: none; } }

@media (max-width: 540px) {
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .nav-inner { gap: 12px; }
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  border: 0;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #c52a1f; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--red); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }


/* ==========================================================================
   HERO (centered, brand homepage style)
   ========================================================================== */
section.hero {
  padding: clamp(96px, 12vw, 168px) 0 clamp(80px, 9vw, 120px);
  border-top: 0;
  text-align: center;
}
.hero h1 { margin: 0 auto; max-width: 16ch; }
.hero-sub {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  margin: 32px auto 0;
  max-width: 36ch;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}
.hero-cta-row {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.hero-meta strong { color: var(--ink); font-weight: 700; }


/* ==========================================================================
   HERO (split, product page style)
   ========================================================================== */
section.hero-split {
  padding: clamp(28px, 5vw, 56px) 0 clamp(64px, 8vw, 96px);
  border-top: 0;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-split-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}
.hero-split-copy h1 { margin-top: 18px; }
.hero-split-sub {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  margin-top: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.hero-split-body {
  margin-top: 22px;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-split-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-split-meta-line {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.hero-split-meta-line strong { color: var(--ink); font-weight: 700; }

/* image rotator inside the split hero */
.rotator {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.rotator-frame {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}
.rotator-frame.is-active { opacity: 1; }
.rotator-overlay {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.rotator-overlay .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 52, 39, 0.22);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230, 52, 39, 0.22); }
  50%      { box-shadow: 0 0 0 9px rgba(230, 52, 39, 0.0); }
}


/* ==========================================================================
   PRESS STRIP
   ========================================================================== */
section.press {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-alt);
}
.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.press-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  white-space: nowrap;
}
.press-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.press-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px clamp(28px, 4vw, 52px);
}
.press-logos img {
  display: block;
  height: 22px;
  width: auto;
  max-width: none;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.press-logos img:hover { opacity: 1; }

@media (max-width: 760px) {
  .press-inner { flex-direction: column; gap: 24px; }
}


/* ==========================================================================
   MANIFESTO / WHAT IT IS
   ========================================================================== */
.manifesto h2 {
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;
  max-width: 14ch;
}
.manifesto-lede {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 56ch;
  letter-spacing: -0.01em;
}
.manifesto-lede strong { color: var(--ink); font-weight: 700; }


/* ==========================================================================
   PRODUCT GRID (DARK) — three-card broadcast tools section
   ========================================================================== */
section.products {
  background: var(--bg-deep);
  color: #fff;
  border-top-color: var(--ink);
}
section.products .section-tag { color: rgba(255, 255, 255, 0.6); }
section.products .lede        { color: rgba(255, 255, 255, 0.78); }
section.products h2           { color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: #0e0e0e;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  position: relative;
  min-height: 520px;
}
.product-card:hover { background: #161616; }
.product-card:hover .product-card-cta { color: var(--red); }
.product-card:hover .product-card-art img { transform: scale(1.02); }

.product-card-art {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.product-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card-art img.blend { mix-blend-mode: lighten; }

.product-card .product-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.product-card .product-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.product-card h3 {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
}
.product-card .for-who {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 700;
}
.product-card > p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  flex: 1;
}
.product-card-cta {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s ease;
}
.product-card-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}
.product-card:hover .product-card-cta::after { transform: translateX(4px); }


/* ==========================================================================
   LOCK-IN SCROLLY
   ========================================================================== */
.scrolly { margin-top: clamp(40px, 6vw, 80px); }

.scrolly-pin-spacer {
  position: relative;
  height: calc(var(--step-count, 4) * 100vh);
}
.scrolly-pin {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}
.scrolly-pin > .container { height: 100%; }

.scrolly-pin-grid {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .scrolly-pin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: stretch;
    padding: clamp(40px, 5vw, 64px) 0;
  }
}

.scrolly-pin-visual {
  position: relative;
  width: 100%;
  flex: 0 0 46%;
  min-height: 0;
}
@media (min-width: 900px) {
  .scrolly-pin-visual {
    flex: initial;
    height: 100%;
    max-height: 78vh;
    align-self: center;
  }
}
.scrolly-pin-frame {
  position: relative;
  width: 100%; height: 100%;
  /* background: var(--bg-alt); */
  border-radius: 4px;
  overflow: hidden;
  /* border: 1px solid var(--rule); */
}
.scrolly-pin-frame .sf-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 450ms ease;
  pointer-events: none;
}
.scrolly-pin-frame .sf-img.is-active { opacity: 1; }

.scrolly-caption {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
}
.scrolly-caption .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.scrolly-caption .caption-sep { color: var(--muted); }
@media (min-width: 900px) {
  .scrolly-caption {
    left: 20px; bottom: 20px;
    padding: 10px 18px 10px 14px;
    font-size: 12px;
    gap: 12px;
  }
  .scrolly-caption .dot { width: 8px; height: 8px; }
}

.scrolly-pin-text {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
}
@media (min-width: 900px) {
  .scrolly-pin-text {
    flex: initial;
    height: 100%;
    align-self: stretch;
  }
}
.scrolly-step {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 450ms ease, transform 450ms ease;
  pointer-events: none;
}
.scrolly-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scrolly-step .step-num {
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  display: inline-block;
}
.scrolly-step h3 {
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-top: 18px;
}
.scrolly-step > p {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 42ch;
  margin-top: 18px;
}

/* progress indicators */
.scrolly-progress {
  position: absolute;
  right: clamp(16px, 2vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.scrolly-progress span {
  width: 2px; height: 18px;
  background: rgba(14, 14, 14, 0.18);
  border-radius: 2px;
  transition: background 0.35s ease, height 0.35s ease;
}
.scrolly-progress span.is-active {
  background: var(--red);
  height: 26px;
}
.scrolly-mobile-progress {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(14, 14, 14, 0.08);
  z-index: 5;
}
.scrolly-mobile-progress-fill {
  width: 0%; height: 100%;
  background: var(--red);
  transition: width 90ms linear;
}
@media (max-width: 899px) {
  .scrolly-progress { display: none; }
  .scrolly-mobile-progress { display: block; }
}


/* ==========================================================================
   STATEMENT ROWS — multi-persona grid
   ========================================================================== */
.statement-rows {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px)  { .statement-rows { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .statement-rows { grid-template-columns: repeat(4, 1fr); } }

.stmt-row {
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 32px);
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1100px) {
  .stmt-row:nth-child(4n) { border-right: 0; }
  .stmt-row:nth-last-child(-n+4) { border-bottom: 0; }
}
@media (min-width: 720px) and (max-width: 1099.98px) {
  .stmt-row:nth-child(2n) { border-right: 0; }
  .stmt-row:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 719.98px) {
  .stmt-row { border-right: 0; }
  .stmt-row:last-child { border-bottom: 0; }
}
.stmt-row .num {
  font-size: 12px;
  letter-spacing: 0.20em;
  color: var(--red);
  font-weight: 700;
}
.stmt-row h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.stmt-row p {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---------- 04 VOICES ---------- */
  /* Image-led testimonial cards. Each card is a vertical stack:
     square image on top (full-bleed, edge-to-edge), then a content
     region with a small red quote-mark, the italic quote, and an
     attribution block separated by a hairline. The 3-column grid
     border logic uses :nth-child(3n) and :nth-last-child(-n+3),
     which works natively for 6 cards as a 3×2 layout. */
  .quotes {
    display: grid; grid-template-columns: 1fr;
    gap: 0; border-top: 1px solid var(--rule);
  }
  @media (min-width: 1000px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

  .quote {
    padding: 0;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    display: flex; flex-direction: column;
    background: var(--bg);
    overflow: hidden;
  }
  @media (min-width: 1000px) {
    .quote:nth-child(3n) { border-right: 0; }
    .quote:nth-last-child(-n+3) { border-bottom: 0; }
  }
  @media (max-width: 999.98px) {
    .quote { border-right: 0; }
    .quote:last-child { border-bottom: 0; }
  }

  .quote-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-alt); /* cream fallback while loading or if image is missing */
    overflow: hidden;
  }
  .quote-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  .quote:hover .quote-image img { transform: scale(1.03); }

  .quote-content {
    padding: clamp(28px, 2.6vw, 40px) clamp(24px, 2.4vw, 32px);
    display: flex; flex-direction: column;
    gap: 22px;
    flex: 1;
  }
  .quote .quote-mark {
    font-size: 40px; line-height: 0.6;
    color: var(--red); font-style: normal;
    font-weight: 700;
    display: block;
    margin-bottom: -10px;
  }
  .quote blockquote {
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.55; letter-spacing: -0.005em;
    color: var(--ink); font-style: italic; flex: 1;
  }
  .quote-attr {
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    font-size: 14px; letter-spacing: 0.04em;
  }
  .quote-attr .name {
    font-weight: 700; color: var(--ink);
    text-transform: uppercase; letter-spacing: 0.10em;
  }
  .quote-attr .role { color: var(--ink-soft); margin-top: 4px; }

/* ==========================================================================
   FEATURES (DARK)
   ========================================================================== */
section.features-dark {
  background: var(--bg-deep);
  color: #fff;
  border-top-color: var(--ink);
}
section.features-dark .section-tag { color: rgba(255, 255, 255, 0.6); }
section.features-dark .lede        { color: rgba(255, 255, 255, 0.78); }
section.features-dark h2           { color: #fff; }

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 720px) { .features-list { grid-template-columns: 1fr 1fr; } }

.feat {
  padding: clamp(32px, 3vw, 48px) clamp(20px, 2.4vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 720px) {
  .feat:nth-child(2n) { border-right: 0; }
  .feat:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 719.98px) {
  .feat { border-right: 0; }
  .feat:last-child { border-bottom: 0; }
}
.feat-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: rgba(255, 255, 255, 0.55);
}
.feat-num { font-size: 13px; letter-spacing: 0.20em; font-weight: 700; }
.feat-glyph { font-size: 18px; color: var(--red); }
.feat h3 {
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
}
.feat p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  max-width: 52ch;
}


/* ==========================================================================
   HARDWARE / SPECS
   ========================================================================== */
.hardware-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 1000px) {
  .hardware-grid { grid-template-columns: 1.05fr 1fr; }
}
.hardware-image {
  background: var(--bg-alt);
  aspect-ratio: 5 / 4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.hardware-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.specs {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.specs li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  font-size: 15px;
}
.specs .label {
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.specs .value {
  color: var(--ink);
  letter-spacing: -0.01em;
}


/* ==========================================================================
   APP CARD
   ========================================================================== */
section.apps {
  text-align: center;
  background: var(--bg-alt);
}
section.apps h2 { margin: 0 auto; max-width: 18ch; }
section.apps .lede {
  margin: 24px auto 0;
  text-align: center;
}
.apps-card {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(36px, 4vw, 56px);
  text-align: center;
}
.apps-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0 36px;
  text-align: left;
}
@media (min-width: 720px) {
  .apps-roles { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.apps-role {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.apps-role .role-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}
.apps-role p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.apps-stores {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.15s ease;
}
.store-pill:hover { background: var(--red); }


/* ==========================================================================
   FINAL CTA
   ========================================================================== */
section.final-cta {
  text-align: center;
  border-top: 1px solid var(--rule);
}
section.final-cta .eyebrow { justify-content: center; }
section.final-cta h2 { margin: 24px auto; max-width: 14ch; }
section.final-cta .container > p {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 auto 36px;
}
.final-row {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP)
   ========================================================================== */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 5vw, 72px) 0;
}
@media (min-width: 900px) {
  .pdp-grid { grid-template-columns: 1.1fr 1fr; }
}

.pdp-gallery {
  position: relative;
}
.pdp-gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.pdp-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pdp-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pdp-gallery-thumb {
  width: 80px;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.pdp-gallery-thumb.is-active { border-color: var(--ink); border-width: 2px; }
.pdp-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.pdp-meta { display: flex; flex-direction: column; gap: 22px; }
.pdp-meta h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.pdp-price {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.pdp-price .compare {
  font-size: 0.7em;
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
  margin-left: 12px;
}
.pdp-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.pdp-desc ul{
  margin-left: 1rem;
}
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.pdp-variant-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.pdp-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pdp-variant-option {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--rule-strong);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pdp-variant-option.is-active {
  background: var(--ink);
  color: #fff;
}
.pdp-add-to-cart {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.pdp-shipping {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}


/* ==========================================================================
   COLLECTION GRID
   ========================================================================== */
.collection-header {
  text-align: center;
  padding: clamp(48px, 6vw, 96px) 0 clamp(32px, 4vw, 56px);
}
.collection-header h1 {
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.collection-header p {
  margin-top: 18px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px)  { .collection-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.collection-card-art {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.collection-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.collection-card:hover .collection-card-art img { transform: scale(1.02); }
.collection-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.collection-card .price {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}


/* ==========================================================================
   CART
   ========================================================================== */
.cart-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.cart-page h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 32px;
}
.cart-empty {
  text-align: center;
  padding: 80px 0;
}
.cart-empty p {
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-2);
  margin-bottom: 28px;
}
.cart-items { border-top: 1px solid var(--rule); }
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.cart-item-art {
  width: 88px; height: 88px;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
}
.cart-item-art img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cart-item-info .variant {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.cart-item-info .price {
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
}
.cart-qty button {
  width: 36px; height: 36px;
  font-size: 16px;
  font-weight: 700;
}
.cart-qty input {
  width: 40px;
  text-align: center;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
}
.cart-summary {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-summary .row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.cart-summary .row.total {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.cart-checkout {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}


/* ==========================================================================
   ARTICLE / BLOG
   ========================================================================== */
.article-hero {
  text-align: center;
  padding: clamp(72px, 9vw, 128px) 0 clamp(48px, 6vw, 72px);
}
.article-hero .eyebrow { justify-content: center; margin-bottom: 22px; }
.article-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 24ch;
  margin: 0 auto;
}
.article-hero .meta {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.article-hero .meta .dot { margin: 0 12px; color: var(--muted); }
.article-hero-image {
  margin-top: clamp(36px, 5vw, 64px);
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.article-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.article-body > * + * { margin-top: 1.4em; }
.article-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-top: 2em;
}
.article-body h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-top: 1.6em;
}
.article-body p { color: var(--ink-2); }
.article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-body img { border-radius: 4px; margin: 1.8em 0; }
.article-body blockquote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 1.8em 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.1em;
}
.article-body ul, .article-body ol { padding-left: 1.4em; }
.article-body li + li { margin-top: 0.4em; }


/* ==========================================================================
   BLOG INDEX
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px)  { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.blog-card-art {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.blog-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-art img { transform: scale(1.02); }
.blog-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.blog-card .meta {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 38ch;
}
.footer-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}
footer h4 {
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.15s ease;
}
footer ul a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}



.pagination{
  text-align: center; 
  padding-bottom: clamp(48px, 6vw, 96px);
}

.pagination > span a, .pagination .page.current, .deco{
    padding: 10px 15px;
}
.pagination > span:not(.deco) a {
    border: 1px solid var(--rule);
}
.pagination > span:not(.deco) a:hover {
    border: 1px solid var(--red);
    color: var(--red);
}
.pagination .page.current{
  color: var(--red);
    border: 1px solid var(--red);
}

/* For dynamic checkout buttons on the product page */
shopify-accelerated-checkout {
  --shopify-accelerated-checkout-button-block-size: 55px; /* Changes the button height (max is 55px)[reference:3] */
  --shopify-accelerated-checkout-button-border-radius: 50px;
  --shopify-accelerated-checkout-skeleton-background-color: #f0f0f0; /* Changes the color of the grey loading box */
}