:root {
  --refresh-bg: #f5f8f1;
  --refresh-surface: #ffffff;
  --refresh-surface-soft: #f9fbf7;
  --refresh-ink: #111713;
  --refresh-ink-soft: #526056;
  --refresh-muted: #718074;
  --refresh-moss: #0f5132;
  --refresh-moss-dark: #0a3423;
  --refresh-sun: #d98e20;
  --refresh-sun-soft: #fff2d8;
  --refresh-circuit: #2f7f88;
  --refresh-line: rgba(17, 23, 19, 0.1);
  --refresh-line-strong: rgba(17, 23, 19, 0.18);
  --refresh-shadow: 0 18px 48px rgba(16, 30, 22, 0.08);
  --refresh-shadow-strong: 0 28px 72px rgba(16, 30, 22, 0.14);
  --refresh-radius-xl: 28px;
  --refresh-radius-lg: 20px;
  --refresh-radius-md: 14px;
  --content-width: min(1240px, calc(100vw - 48px));
}

html {
  background: var(--refresh-bg);
  overflow-x: hidden;
}

body {
  color: var(--refresh-ink);
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 23, 19, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 86% 4%, rgba(47, 127, 136, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 10%, rgba(217, 142, 32, 0.12), transparent 22rem),
    linear-gradient(180deg, #fbfcf8 0%, #f1f7ef 48%, #eef5ed 100%);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  background-color: var(--refresh-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.42), transparent 34rem);
}

a {
  color: var(--refresh-moss);
}

a:hover {
  color: var(--refresh-moss-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 142, 32, 0.52);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-main,
.site-footer {
  width: var(--content-width);
}

.site-main {
  padding-bottom: 72px;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0;
  background: rgba(251, 252, 248, 0.9);
  border-bottom: 1px solid rgba(17, 23, 19, 0.08);
  box-shadow: 0 8px 30px rgba(17, 23, 19, 0.04);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header--active {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--refresh-line);
  box-shadow: 0 14px 36px rgba(17, 23, 19, 0.08);
}

.site-header__inner {
  width: var(--content-width);
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand-lockup {
  min-width: 0;
}

.brand-lockup__logo {
  display: block;
  width: clamp(58px, 5vw, 76px);
  height: auto;
  filter: none;
}

.primary-nav {
  justify-self: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--refresh-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.menu-shell {
  gap: 2px;
}

.menu-shell a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(17, 23, 19, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-shell a::after {
  content: none;
}

.menu-shell a:hover,
.menu-shell .current-menu-item a {
  color: var(--refresh-ink);
  background: rgba(15, 81, 50, 0.08);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.site-header__status {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.12);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__status::before,
.hero-panel__signal-pill::before,
.pdp-buy-box__signals span::before,
.product-card__signals li::before,
.site-footer__seal span::before,
.site-footer__closing span::before,
.product-hero__signal-strip span::before,
.page-hero__meta span::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--refresh-sun);
  box-shadow: 0 0 0 4px rgba(217, 142, 32, 0.14);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button,
.site-header__cta {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 81, 50, 0.16);
  background: var(--refresh-moss);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 81, 50, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button.button:hover,
.site-header__cta:hover {
  color: #ffffff;
  background: var(--refresh-moss-dark);
  border-color: rgba(217, 142, 32, 0.24);
  box-shadow: 0 16px 32px rgba(15, 81, 50, 0.2);
  transform: translateY(-1px);
}

.button--ghost,
.button--header,
.site-header__cta,
.hero-panel__actions .button--ghost,
.purchase-block__content .button--ghost,
.button--footer {
  color: var(--refresh-ink);
  background: #ffffff;
  border-color: var(--refresh-line-strong);
  box-shadow: none;
}

.button--ghost:hover,
.button--header:hover,
.site-header__cta:hover,
.hero-panel__actions .button--ghost:hover,
.purchase-block__content .button--ghost:hover,
.button--footer:hover {
  color: var(--refresh-ink);
  background: var(--refresh-surface-soft);
}

.canopy-progressive-image__full {
  opacity: 1 !important;
}

.canopy-progressive-image::before,
.canopy-progressive-image::after {
  opacity: 0;
}

.eyebrow {
  color: var(--refresh-sun);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.shopify-hero {
  width: 100%;
  max-width: 1360px;
  min-height: min(760px, calc(100svh - 92px));
  margin: 14px auto 0;
  padding: clamp(20px, 3.5vw, 44px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 12%, rgba(47, 127, 136, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 16%, rgba(217, 142, 32, 0.18), transparent 20rem),
    linear-gradient(135deg, #101713 0%, #132219 48%, #0a3423 100%);
  box-shadow: 0 34px 92px rgba(17, 23, 19, 0.24);
  color: #ffffff;
}

.shopify-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.16;
}

.hero-panel__scrim {
  display: none;
}

.hero-panel__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

.hero-panel__copy {
  max-width: 34rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  text-shadow: none;
}

.hero-panel__copy::before {
  content: none;
}

.hero-panel__brand,
.hero-panel .eyebrow {
  color: #ffdba4;
}

.hero-panel__copy h1 {
  max-width: 10ch;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-panel__lede {
  max-width: 32rem;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.hero-panel__commerce {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-panel__commerce span {
  min-height: 40px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__price {
  background: var(--refresh-sun-soft) !important;
  color: var(--refresh-ink) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
}

.hero-panel__price .woocommerce-Price-amount {
  margin-left: 4px;
}

.hero-panel__signal-pills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-panel__signal-pill,
.page-hero__meta span,
.product-hero__signal-strip span {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel__media {
  position: relative;
  padding: clamp(10px, 1.6vw, 18px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 243, 0.92)),
    radial-gradient(circle at 78% 10%, rgba(217, 142, 32, 0.2), transparent 18rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-panel__media > .canopy-progressive-image,
.hero-panel__media .canopy-progressive-image__picture,
.hero-panel__media .canopy-progressive-image__full {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-panel__media .canopy-progressive-image {
  border-radius: 22px;
  background: #edf3ec;
}

.hero-panel__image {
  aspect-ratio: 1.18 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-panel__manifest {
  position: absolute;
  left: clamp(22px, 3vw, 40px);
  right: clamp(22px, 3vw, 40px);
  bottom: clamp(22px, 3vw, 40px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 23, 19, 0.08);
  box-shadow: 0 18px 48px rgba(17, 23, 19, 0.12);
  backdrop-filter: blur(12px) saturate(1.05);
}

.hero-panel__manifest-row {
  padding: 14px 15px;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel__manifest dt {
  margin: 0 0 5px;
  color: var(--refresh-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel__manifest dd {
  margin: 0;
  color: var(--refresh-ink);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.35;
}

.section-block {
  margin-top: clamp(44px, 7vw, 90px);
  padding-top: 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.section-heading::before {
  content: none;
}

.section-heading h2,
.page-hero h1,
.site-footer h2,
.pdp-buy-box h1 {
  color: var(--refresh-ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p:last-child,
.page-hero p,
.signal-line p,
.detail-ledger__row p,
.faq-card p,
.rail-card p,
.product-card__summary,
.product-photo-card__body p:last-child,
.image-story__caption p:last-child,
.image-story__slice-body p:last-child,
.source-card__label,
.pdp-buy-box__strap,
.pdp-buy-box__excerpt,
.pdp-buy-box__purchase-note,
.pdp-policy-list dd {
  color: var(--refresh-ink-soft);
}

.product-collection {
  margin-top: clamp(26px, 4.5vw, 54px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  border: 1px solid var(--refresh-line);
  background: var(--refresh-surface);
  box-shadow: var(--refresh-shadow);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 50, 0.2);
  box-shadow: var(--refresh-shadow-strong);
}

.product-card__media {
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #edf3ec;
  box-shadow: none;
}

.product-card__media .canopy-progressive-image,
.product-card__media .canopy-progressive-image__picture,
.product-card__media .canopy-progressive-image__full {
  width: 100%;
  height: 100%;
}

.product-card__media .canopy-progressive-image__full {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, opacity 620ms ease;
}

.product-card:hover .product-card__media .canopy-progressive-image__full {
  transform: scale(1.035);
}

.product-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 30px);
}

.product-card__heading h3 {
  margin: 8px 0 0;
  color: var(--refresh-ink);
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-card__heading h3 a {
  color: inherit;
}

.product-card__signals,
.site-footer__seal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-card__signals li,
.site-footer__seal span {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.07);
  border: 1px solid rgba(15, 81, 50, 0.1);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-card__facts div {
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  background: var(--refresh-surface-soft);
  border: 1px solid var(--refresh-line);
}

.product-card__facts dt {
  color: var(--refresh-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__facts dd {
  margin: 5px 0 0;
  color: var(--refresh-ink);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-card__link {
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--refresh-moss);
  border: 1px solid rgba(15, 81, 50, 0.16);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card__link::after {
  content: "";
}

.product-card__link:hover {
  color: #ffffff;
  background: var(--refresh-moss-dark);
}

.signal-brief__layout,
.detail-ledger__layout,
.site-footer__inner,
.product-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
}

.signal-brief__lead,
.signal-line,
.detail-ledger__row,
.keyword-line,
.page-hero,
.page-content,
.product-hero__summary,
.rail-card,
.spec-card,
.product-photo-card,
.faq-card,
.source-card,
.image-story__feature,
.image-story__slice,
.image-story__note,
.spec-table,
.product-content__main {
  border: 1px solid var(--refresh-line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--refresh-shadow);
}

.signal-brief__lead,
.page-content,
.product-hero__summary,
.page-hero,
.product-content__main {
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--refresh-radius-xl);
}

.signal-brief__lead p {
  color: var(--refresh-ink);
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.signal-brief__list,
.detail-ledger__rows,
.product-content__rail,
.source-list {
  display: grid;
  gap: 14px;
}

.signal-line,
.detail-ledger__row,
.rail-card {
  padding: 20px;
  border-radius: var(--refresh-radius-lg);
}

.signal-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.signal-line__index {
  display: grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.12);
  font-weight: 900;
}

.signal-line h3,
.detail-ledger__row h3,
.faq-card h3,
.rail-card h3,
.product-photo-card__body h3,
.image-story__caption h3,
.image-story__slice-body h3 {
  margin: 0 0 8px;
  color: var(--refresh-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.image-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.image-story__feature,
.image-story__slice,
.image-story__note,
.product-photo-card {
  overflow: hidden;
  border-radius: var(--refresh-radius-xl);
}

.image-story__feature,
.image-story__slice {
  margin: 0;
}

.image-story__media .canopy-progressive-image,
.image-story__slice-media .canopy-progressive-image,
.product-photo-card .canopy-progressive-image {
  width: 100%;
  background: #edf3ec;
}

.image-story__image,
.product-photo-card .canopy-progressive-image__full {
  width: 100%;
  aspect-ratio: 1.2 / 0.86;
  object-fit: cover;
}

.image-story__image--feature {
  aspect-ratio: 1 / 0.82;
}

.image-story__stack {
  display: grid;
  gap: 18px;
}

.image-story__caption,
.image-story__slice-body,
.image-story__note,
.product-photo-card__body {
  padding: 20px 22px 24px;
}

.image-story__note {
  display: grid;
  gap: 10px;
  align-content: start;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 142, 32, 0.22), transparent 18rem),
    linear-gradient(135deg, #101713, #0a3423);
  border-color: rgba(255, 255, 255, 0.08);
}

.image-story__note h3,
.image-story__note p {
  color: #ffffff;
}

.image-story__note p {
  opacity: 0.74;
}

.image-story__note .button {
  justify-self: start;
  color: var(--refresh-ink);
  background: #ffffff;
  box-shadow: none;
}

.detail-ledger__keywords {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.keyword-line {
  padding: 13px 15px;
  border-radius: 999px;
  color: var(--refresh-moss);
  background: rgba(255, 255, 255, 0.82);
}

.faq-band {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-grid,
.spec-grid,
.product-photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
  border-radius: var(--refresh-radius-lg);
}

.faq-card::before {
  content: none;
}

.source-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.source-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
}

.source-row__index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.08);
  font-weight: 900;
}

.source-card {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
}

.source-card__action {
  flex: 0 0 auto;
  color: var(--refresh-moss);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs {
  width: var(--content-width);
  margin: 22px auto 0;
  color: var(--refresh-muted);
  font-size: 0.74rem;
}

.breadcrumbs a {
  color: var(--refresh-ink-soft);
}

.page-hero {
  margin-top: 22px;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.page-hero__meta span,
.product-hero__signal-strip span {
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.07);
  border-color: rgba(15, 81, 50, 0.1);
}

.live-lanterns-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 22px;
  align-items: stretch;
}

.live-lanterns-overview__media,
.live-lanterns-overview__copy,
.live-node-card,
.live-peers-step {
  border: 1px solid var(--refresh-line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--refresh-shadow);
}

.live-lanterns-overview__media {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--refresh-radius-xl);
  background: #edf3ec;
}

.live-lanterns-overview__media .canopy-progressive-image,
.live-lanterns-overview__media .canopy-progressive-image__picture,
.live-lanterns-overview__media .canopy-progressive-image__full {
  display: block;
  width: 100%;
  height: 100%;
}

.live-lanterns-overview__image {
  min-height: 420px;
  object-fit: cover;
  object-position: center 48%;
}

.live-lanterns-overview__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--refresh-radius-xl);
}

.live-lanterns-overview__copy h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--refresh-ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.live-lanterns-overview__copy p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--refresh-ink-soft);
}

.live-lanterns-index {
  scroll-margin-top: 110px;
}

.live-performance-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.live-performance-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--refresh-radius-xl);
  border: 1px solid rgba(15, 81, 50, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 142, 32, 0.14), transparent 14rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--refresh-shadow-strong);
}

.live-performance-panel h3 {
  margin: 0;
  color: var(--refresh-ink);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.live-performance-panel__region {
  margin: -6px 0 0;
  color: var(--refresh-sun);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-performance-panel__focus {
  margin: 0;
  color: var(--refresh-ink-soft);
  line-height: 1.62;
}

.live-performance-panel__facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.live-performance-panel__facts div {
  min-width: 0;
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--refresh-surface-soft);
  border: 1px solid var(--refresh-line);
}

.live-performance-panel__facts dt {
  color: var(--refresh-muted);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-performance-panel__facts dd {
  margin: 5px 0 0;
  color: var(--refresh-ink);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.live-performance-panel__cta {
  width: 100%;
}

.live-performance-directory__main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.live-performance-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.live-performance-check {
  min-width: 0;
  padding: 18px;
  border-radius: var(--refresh-radius-lg);
  border: 1px solid var(--refresh-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--refresh-shadow);
}

.live-performance-check h3 {
  margin: 0 0 7px;
  color: var(--refresh-ink);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.live-performance-check p {
  margin: 0;
  color: var(--refresh-ink-soft);
  font-size: 0.88rem;
  line-height: 1.52;
}

.live-node-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.live-node-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: var(--refresh-radius-lg);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.live-node-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 50, 0.2);
  box-shadow: var(--refresh-shadow-strong);
}

.live-node-card.is-active {
  border-color: rgba(15, 81, 50, 0.38);
  box-shadow:
    0 0 0 2px rgba(15, 81, 50, 0.08),
    var(--refresh-shadow-strong);
}

.live-node-card__header,
.live-node-card__status,
.live-node-card__select,
.live-node-card__map-link {
  display: flex;
  align-items: center;
}

.live-node-card__header {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--refresh-line);
}

.live-node-card__status {
  min-width: 0;
  gap: 8px;
  color: var(--refresh-moss);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.live-node-card__pulse {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--refresh-moss);
  box-shadow: 0 0 0 5px rgba(15, 81, 50, 0.12);
  animation: live-node-pulse 2.8s ease-in-out infinite;
}

.live-node-card__number {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 12px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.12);
  font-weight: 900;
}

.live-node-card__body {
  flex: 1 1 auto;
}

.live-node-card__region {
  margin: 0 0 7px;
  color: var(--refresh-sun);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-node-card h3 {
  margin: 0 0 16px;
  color: var(--refresh-ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.live-node-card__focus {
  margin: -8px 0 16px;
  color: var(--refresh-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.live-node-card__facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.live-node-card__facts div {
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  background: var(--refresh-surface-soft);
  border: 1px solid var(--refresh-line);
}

.live-node-card__facts dt {
  color: var(--refresh-muted);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-node-card__facts dd {
  margin: 5px 0 0;
  color: var(--refresh-ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.live-node-card__footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.live-node-card__select {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.live-node-card__map-link {
  min-height: 46px;
  padding: 0 14px;
  justify-content: center;
  border-radius: 999px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.07);
  border: 1px solid rgba(15, 81, 50, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-node-card__map-link:hover {
  color: var(--refresh-moss-dark);
  background: rgba(15, 81, 50, 0.1);
}

.live-node-grid__note {
  margin: -2px 0 0;
  color: var(--refresh-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.live-peers-guide__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.live-peers-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: var(--refresh-radius-lg);
}

.live-peers-step__index {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--refresh-moss);
  font-size: 0.82rem;
  font-weight: 900;
}

.live-peers-step h3 {
  margin: 0 0 7px;
  color: var(--refresh-ink);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.live-peers-step p {
  margin: 0;
  color: var(--refresh-ink-soft);
}

@keyframes live-node-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 81, 50, 0.34);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(15, 81, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(15, 81, 50, 0);
  }
}

body.archive .product-grid {
  margin-top: 0;
}

.pdp-layout {
  width: var(--content-width);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.pdp-layout__media {
  display: grid;
  gap: 16px;
}

.pdp-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pdp-media-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--refresh-radius-lg);
  border: 1px solid var(--refresh-line);
  background: #edf3ec;
  box-shadow: var(--refresh-shadow);
}

.pdp-media-card--featured {
  border-radius: 28px;
}

.pdp-media-card .canopy-progressive-image,
.pdp-media-card .canopy-progressive-image__picture,
.pdp-media-card .canopy-progressive-image__full {
  display: block;
  width: 100%;
  height: 100%;
}

.pdp-media-card__image {
  aspect-ratio: 1.08 / 0.88;
  object-fit: cover;
  object-position: center;
}

.pdp-media-card--featured .pdp-media-card__image {
  aspect-ratio: 1.04 / 0.9;
}

.pdp-media-card__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(17, 23, 19, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px) saturate(1.04);
}

.pdp-media-card__caption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pdp-media-card__caption strong {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.pdp-layout__summary {
  position: sticky;
  top: 96px;
}

.pdp-buy-box {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--refresh-line);
  box-shadow: var(--refresh-shadow-strong);
}

.pdp-buy-box h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.pdp-buy-box__strap {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.pdp-buy-box__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-buy-box__signals span {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--refresh-moss);
  background: rgba(15, 81, 50, 0.07);
  border: 1px solid rgba(15, 81, 50, 0.1);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pdp-buy-box__price {
  color: var(--refresh-ink);
  font-size: 1.7rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.pdp-buy-box__excerpt {
  padding-top: 2px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.pdp-buy-box__cta {
  padding-top: 4px;
}

.pdp-buy-box__cta form.cart {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.pdp-buy-box__cta .quantity {
  margin: 0 !important;
}

.pdp-buy-box__cta .quantity .qty {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--refresh-line-strong);
  color: var(--refresh-ink);
  background: #ffffff;
  font-weight: 800;
}

.pdp-buy-box__cta .single_add_to_cart_button.button,
.woocommerce button.button.alt.single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  margin: 0;
  border-radius: 999px;
  background: var(--refresh-moss);
  color: #ffffff;
  border: 1px solid rgba(15, 81, 50, 0.16);
}

.pdp-buy-box__purchase-note {
  padding-top: 14px;
  border-top: 1px solid var(--refresh-line);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pdp-policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.pdp-policy-list div {
  padding: 14px;
  border-radius: 16px;
  background: var(--refresh-surface-soft);
  border: 1px solid var(--refresh-line);
}

.pdp-policy-list dt {
  color: var(--refresh-ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pdp-policy-list dd {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.spec-table {
  display: grid;
  overflow: hidden;
  border-radius: var(--refresh-radius-xl);
}

.spec-table__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--refresh-line);
}

.spec-table__row:first-child {
  border-top: 0;
}

.spec-table__row dt {
  color: var(--refresh-muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-table__row dd {
  margin: 0;
  color: var(--refresh-ink);
  font-weight: 700;
}

.product-photo-gallery__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-content {
  margin-top: clamp(46px, 7vw, 86px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-content__main {
  border-radius: var(--refresh-radius-xl);
}

.product-content__main h2,
.page-content h2 {
  color: var(--refresh-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  letter-spacing: -0.03em;
}

.site-footer {
  margin-top: clamp(58px, 9vw, 110px);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 10%, rgba(47, 127, 136, 0.24), transparent 24rem),
    radial-gradient(circle at 12% 0%, rgba(217, 142, 32, 0.18), transparent 22rem),
    linear-gradient(135deg, #101713, #0a3423);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 82px rgba(17, 23, 19, 0.2);
}

.site-footer h2,
.site-footer .eyebrow,
.site-footer__lead p,
.site-footer__nav a:not(.button) {
  color: #ffffff;
}

.site-footer__lead p,
.site-footer__nav a:not(.button) {
  opacity: 0.78;
}

.site-footer__inner {
  align-items: start;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer__closing {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__closing span {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js-reveal {
  opacity: 1;
  transform: none;
  transition-duration: 520ms;
}

@media (max-width: 1120px) {
  .site-header__inner {
    width: calc(100vw - 24px);
    display: flex;
    justify-content: space-between;
    grid-template-columns: none;
  }

  .primary-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    overflow-x: auto;
  }

  .menu-shell {
    width: max-content;
    min-width: 100%;
    justify-content: center;
  }

  .hero-panel__inner,
  .pdp-layout,
  .signal-brief__layout,
  .detail-ledger__layout,
  .live-lanterns-overview,
  .live-performance-directory,
  .product-content,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .pdp-layout__summary {
    position: static;
  }

  .live-performance-panel {
    position: static;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .live-node-grid,
  .live-peers-guide__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --content-width: min(100vw - 32px, 760px);
  }

  .site-main {
    padding-bottom: 44px;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    min-height: 54px;
    gap: 10px;
  }

  .brand-lockup__logo {
    width: 54px;
  }

  .site-header__status {
    display: none;
  }

  .site-header__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.66rem;
  }

  .shopify-hero {
    width: calc(100vw - 16px);
    min-height: auto;
    margin-top: 8px;
    padding: 18px;
    border-radius: 26px;
  }

  .hero-panel__inner {
    gap: 20px;
  }

  .hero-panel__media {
    order: -1;
    padding: 8px;
    border-radius: 22px;
  }

  .hero-panel__media .canopy-progressive-image {
    border-radius: 18px;
  }

  .hero-panel__image {
    aspect-ratio: 1.14 / 0.78;
  }

  .hero-panel__manifest {
    position: static;
    margin-top: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }

  .hero-panel__manifest-row {
    padding: 11px;
  }

  .hero-panel__copy {
    max-width: none;
  }

  .hero-panel__copy h1 {
    max-width: 9.5ch;
    font-size: clamp(2.55rem, 12vw, 4.1rem);
    line-height: 0.96;
  }

  .hero-panel__lede {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-panel__commerce,
  .hero-panel__signal-pills,
  .hero-panel__actions {
    margin-top: 16px;
  }

  .section-block {
    margin-top: 56px;
  }

  .section-heading h2,
  .page-hero h1,
  .site-footer h2,
  .pdp-buy-box h1 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__media .canopy-progressive-image__full {
    aspect-ratio: 1.18 / 0.76;
  }

  .product-card__facts {
    grid-template-columns: 1fr;
  }

  .image-story__layout,
  .faq-grid,
  .live-performance-checks,
  .live-node-grid,
  .live-peers-guide__steps,
  .product-photo-gallery__grid,
  .pdp-media-grid {
    grid-template-columns: 1fr;
  }

  .live-lanterns-overview__media,
  .live-lanterns-overview__image {
    min-height: 300px;
  }

  .pdp-layout {
    width: var(--content-width);
    max-width: var(--content-width);
    margin-top: 18px;
    gap: 18px;
  }

  .pdp-media-grid {
    display: none;
  }

  .pdp-media-card--featured .pdp-media-card__image {
    aspect-ratio: 1.08 / 0.82;
  }

  .pdp-buy-box {
    width: calc(100vw - 32px) !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 22px;
    border-radius: 24px;
    overflow: hidden;
  }

  .pdp-buy-box h1 {
    max-width: 10.5ch !important;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.02;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .pdp-buy-box__strap,
  .pdp-buy-box__excerpt {
    max-width: 34ch;
    overflow-wrap: anywhere !important;
  }

  .pdp-buy-box__signals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pdp-buy-box__signals span {
    width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .pdp-buy-box__cta form.cart {
    grid-template-columns: 1fr;
  }

  .pdp-buy-box__cta .quantity .qty {
    max-width: none;
  }

  .spec-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page-hero,
  .page-content,
  .product-content__main,
  .signal-brief__lead,
  .faq-card,
  .source-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .source-card {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .live-node-card__footer {
    grid-template-columns: 1fr;
  }

  .live-node-card__map-link {
    width: 100%;
  }

  .site-footer {
    width: calc(100vw - 24px);
    padding: 28px 22px;
    border-radius: 26px;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --content-width: min(100vw - 24px, 520px);
  }

  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    display: none;
  }

  .site-header__actions {
    display: none;
  }

  .hero-panel__copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11vw, 3.65rem);
  }

  .hero-panel__commerce span,
  .hero-panel__signal-pill {
    min-height: 34px;
    font-size: 0.62rem;
  }

  .hero-panel__actions .button {
    width: 100%;
  }

  .hero-panel__manifest {
    grid-template-columns: 1fr;
  }

  .signal-line {
    grid-template-columns: 1fr;
  }

  .source-row {
    grid-template-columns: 1fr;
  }

  .source-row__index {
    display: none;
  }
}

@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .site-header,
  .site-header--active,
  .hero-panel__manifest,
  .pdp-media-card__caption {
    backdrop-filter: none;
  }

  .canopy-progressive-image::before,
  .canopy-progressive-image::after {
    content: none;
  }

  .canopy-progressive-image__full,
  .hero-panel__image,
  .product-card__media .canopy-progressive-image__full,
  .pdp-media-card .canopy-progressive-image__full {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

body.home .shopify-hero .hero-panel__inner {
  display: flex !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 1240px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(26px, 5vw, 58px) !important;
}

body.home .shopify-hero {
  display: block !important;
}

body.home .shopify-hero .hero-panel__copy {
  flex: 0 1 43% !important;
  min-width: 0 !important;
}

body.home .shopify-hero .hero-panel__copy h1 {
  max-width: 8.4ch !important;
  font-size: clamp(3rem, 5.6vw, 5.25rem) !important;
}

body.home .shopify-hero .hero-panel__media {
  position: relative !important;
  inset: auto !important;
  flex: 0 1 52% !important;
  width: 52% !important;
  min-width: 0 !important;
  max-width: 650px !important;
  display: block !important;
  order: 0 !important;
  z-index: 1 !important;
}

body.home .shopify-hero .hero-panel__media > .canopy-progressive-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.08 / 0.86 !important;
}

body.home .shopify-hero .hero-panel__media .canopy-progressive-image__picture,
body.home .shopify-hero .hero-panel__media .canopy-progressive-image__full {
  width: 100% !important;
  height: 100% !important;
}

body.home .shopify-hero .hero-panel__media .canopy-progressive-image__full {
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

@media (max-width: 900px) {
  body.home .shopify-hero .hero-panel__inner {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.home .shopify-hero .hero-panel__copy,
  body.home .shopify-hero .hero-panel__media {
    flex: 0 1 auto !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.home .shopify-hero .hero-panel__media {
    order: -1 !important;
  }
}

.commerce-hero {
  width: 100%;
  min-height: min(680px, calc(100svh - 110px));
  margin: 14px auto 0;
  padding: clamp(20px, 3.5vw, 44px);
  overflow: hidden;
  position: relative;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 14%, rgba(47, 127, 136, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 14%, rgba(217, 142, 32, 0.18), transparent 20rem),
    linear-gradient(135deg, #101713 0%, #132219 48%, #0a3423 100%);
  box-shadow: 0 34px 92px rgba(17, 23, 19, 0.24);
  color: #ffffff;
}

.commerce-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.16;
}

.commerce-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.commerce-hero__copy {
  min-width: 0;
}

.commerce-hero__brand {
  color: #ffdba4;
}

.commerce-hero__copy h1 {
  max-width: 8.4ch;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.commerce-hero__lede {
  max-width: 32rem;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.commerce-hero__commerce,
.commerce-hero__signal-pills,
.commerce-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.commerce-hero__commerce {
  margin-top: 22px;
}

.commerce-hero__signal-pills {
  margin-top: 18px;
}

.commerce-hero__actions {
  margin-top: 24px;
}

.commerce-hero__commerce span,
.commerce-hero__signal-pill {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-hero__signal-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--refresh-sun);
  box-shadow: 0 0 0 4px rgba(217, 142, 32, 0.14);
}

.commerce-hero__price {
  color: var(--refresh-ink) !important;
  background: var(--refresh-sun-soft) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.commerce-hero__price .woocommerce-Price-amount {
  margin-left: 4px;
}

.commerce-hero__media {
  position: relative;
  min-width: 0;
  padding: clamp(10px, 1.5vw, 18px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 243, 0.92)),
    radial-gradient(circle at 78% 10%, rgba(217, 142, 32, 0.2), transparent 18rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.commerce-hero__media > .canopy-progressive-image {
  width: 100%;
  aspect-ratio: 1.1 / 0.84;
  border-radius: 22px;
  background: #edf3ec;
}

.commerce-hero__media .canopy-progressive-image__picture,
.commerce-hero__media .canopy-progressive-image__full {
  width: 100%;
  height: 100%;
}

.commerce-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.commerce-hero__manifest {
  position: absolute;
  left: clamp(22px, 3vw, 40px);
  right: clamp(22px, 3vw, 40px);
  bottom: clamp(22px, 3vw, 40px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 23, 19, 0.08);
  box-shadow: 0 18px 48px rgba(17, 23, 19, 0.12);
}

.commerce-hero__manifest-row {
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.72);
}

.commerce-hero__manifest dt {
  margin: 0 0 5px;
  color: var(--refresh-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commerce-hero__manifest dd {
  margin: 0;
  color: var(--refresh-ink);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .commerce-hero {
    min-height: auto;
    margin-top: 8px;
    padding: 18px;
    border-radius: 26px;
  }

  .commerce-hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .commerce-hero__media {
    order: -1;
    padding: 8px;
    border-radius: 22px;
  }

  .commerce-hero__media > .canopy-progressive-image {
    aspect-ratio: 1.14 / 0.62;
    border-radius: 18px;
  }

  .commerce-hero__manifest {
    display: none;
  }

  .commerce-hero__copy h1 {
    max-width: 9.5ch;
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }
}

@media (max-width: 560px) {
  .commerce-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.18rem, 9.5vw, 3rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: normal;
  }

  .commerce-hero__lede {
    max-width: 31ch;
    font-size: 0.92rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .commerce-hero__commerce,
  .commerce-hero__signal-pills {
    width: 100%;
    gap: 7px;
  }

  .commerce-hero__commerce span,
  .commerce-hero__signal-pill {
    min-height: 34px;
    max-width: 100%;
    flex: 0 1 auto;
    padding: 0 9px;
    font-size: 0.56rem;
  }

  .commerce-hero__signal-pill:nth-child(n+3) {
    display: none;
  }

  .commerce-hero__actions .button {
    width: 100%;
  }

  .commerce-hero__manifest {
    display: none;
  }
}
