/* ============ Weebly / Square Online page styles ============ */
:root {
  --we-lime: #d4ff3a;
  --we-lime-2: #e6ff66;
  --we-lime-deep: #a8cc1f;
  --we-lime-glow: rgba(212, 255, 58, 0.35);
  --we-orange: #F2522E;
  --we-orange-2: #ff7048;
  --we-orange-deep: #c93b1c;
  --we-orange-glow: rgba(242, 82, 46, 0.32);
  --we-bg: #08080a;
  --we-panel: #0e0f14;
  --we-panel-2: #14151c;
  --we-line: rgba(255, 255, 255, 0.08);
  --we-line-2: rgba(255, 255, 255, 0.14);
  --we-text: #ececef;
  --we-text-dim: rgba(236, 236, 239, 0.62);
  --we-text-mute: rgba(236, 236, 239, 0.42);
  --we-mono: 'JetBrains Mono', ui-monospace, monospace;
  --we-sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --we-serif: 'Fraunces', Georgia, serif;
}

.we-page {
  background: var(--we-bg);
  color: var(--we-text);
  font-family: var(--we-sans);
  overflow-x: hidden;
}
.we-page * { box-sizing: border-box; }

#fluid-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.we-page::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(242, 82, 46, 0.10), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(212, 255, 58, 0.08), transparent 60%),
    var(--we-bg);
}

.we-page > section,
.we-page > header,
.we-page > footer,
.we-page > .we-crumb { position: relative; z-index: 1; }
.we-page > aside.mdrawer { z-index: 50; }

/* Crumb */
.we-crumb {
  position: fixed; top: 80px; left: var(--gutter);
  z-index: 30;
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-3);
  pointer-events: auto;
}
.we-crumb a { color: var(--bone-3); text-decoration: none; }
.we-crumb a:hover { color: var(--lime); }
.we-crumb .cur { color: var(--bone); }

/* ============ HERO ============ */
.we-hero {
  position: relative; min-height: 100vh;
  padding: 24px 40px 0; overflow: hidden;
}
.we-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.95;
}

/* Square Dashboard chrome */
.we-dock {
  display: flex; align-items: center; gap: 24px;
  padding: 8px 16px;
  background: var(--we-panel);
  border: 1px solid var(--we-line);
  border-radius: 6px;
  margin-top: 16px;
  font-family: var(--we-mono);
  font-size: 11px;
  color: var(--we-text-dim);
  position: relative; z-index: 2;
}
.we-dock__group { display: flex; align-items: center; gap: 6px; }
.we-dock__icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 4px; cursor: pointer;
  transition: background .2s, color .2s;
}
.we-dock__icon:hover { background: var(--we-line); color: var(--we-text); }
.we-dock__icon.is-active { background: rgba(242, 82, 46, 0.18); color: var(--we-orange-2); }
.we-dock__icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.we-dock__tab {
  padding: 5px 12px; border-radius: 3px;
  cursor: pointer; letter-spacing: 0.03em;
  transition: all 0.2s;
}
.we-dock__tab:hover { color: var(--we-text); }
.we-dock__tab.is-active {
  background: var(--we-bg); color: var(--we-text);
  box-shadow: inset 0 0 0 1px var(--we-line);
}
.we-dock__live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--we-text-mute);
  letter-spacing: 0.06em;
  font-size: 10.5px;
}
.we-dock__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--we-lime);
  box-shadow: 0 0 0 0 var(--we-lime-glow);
  animation: wePulse 2s ease infinite;
}
.we-dock__live-text { color: var(--we-text); }
.we-dock__pub {
  padding: 5px 14px;
  background: var(--we-orange); color: #fff;
  border-radius: 3px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 0 var(--we-orange-glow);
  animation: wePubPulse 3.4s ease-in-out infinite;
}
@keyframes wePubPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--we-orange-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
@keyframes wePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--we-lime-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.we-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-rows: auto 1fr auto;
  gap: 60px; padding: 60px 0 40px;
  min-height: calc(100vh - 200px);
}
.we-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--we-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--we-text-mute);
}
.we-hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--we-lime);
  border-radius: 50%;
  animation: wePulse 2s ease infinite;
}

.we-hero__title {
  font-family: var(--we-serif);
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
}
.we-hero__title .line { display: block; overflow: hidden; }
.we-hero__title .line > span { display: inline-block; }
.we-hero__title .indent { padding-left: 1.2em; }
.we-hero__title em { font-style: italic; color: var(--we-lime); }

.we-hero__bottom {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end;
  border-top: 1px solid var(--we-line);
  padding-top: 28px;
}
.we-hero__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55; max-width: 56ch;
  color: var(--we-text-dim);
}
.we-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }

.we-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px; border-radius: 999px;
  font-family: var(--we-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform .25s ease, background .25s, color .25s;
}
.we-btn--solid { background: var(--we-lime); color: #0a0a0a; }
.we-btn--solid:hover { background: var(--we-lime-2); }
.we-btn--ghost { background: transparent; color: var(--we-text); border: 1px solid var(--we-line-2); }
.we-btn--ghost:hover { border-color: var(--we-lime); color: var(--we-lime); }
.we-btn .arrow { display: inline-block; transition: transform .25s; }
.we-btn:hover .arrow { transform: translateX(4px); }

/* Status bar */
.we-statusbar {
  display: flex; align-items: center;
  margin: 0 0 24px;
  background: var(--we-panel);
  border: 1px solid var(--we-line);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--we-mono); font-size: 10.5px;
  color: var(--we-text-mute);
  gap: 28px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.we-statusbar__cell { display: flex; align-items: center; gap: 8px; }
.we-statusbar .lbl { color: var(--we-text-mute); text-transform: uppercase; letter-spacing: .12em; }
.we-statusbar .val { color: var(--we-text); }
.we-statusbar .pill {
  padding: 2px 8px; border-radius: 999px;
  background: rgba(212, 255, 58, 0.14);
  color: var(--we-lime);
  font-size: 9.5px;
}
.we-statusbar__delta {
  color: var(--we-orange-2);
  font-size: 9.5px;
}
.we-statusbar__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--we-lime);
  box-shadow: 0 0 0 0 var(--we-lime-glow);
  animation: wePulse 2s ease infinite;
}

/* ============ INTRO STATS ============ */
.we-intro {
  padding: 140px 40px 80px;
  border-top: 1px solid var(--we-line);
}
.we-intro__head {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.we-intro__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--we-line);
  padding-top: 40px;
}
.we-stat__num {
  font-family: var(--we-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--we-lime);
}
.we-stat__num sup {
  font-size: 0.5em; color: var(--we-text);
  font-style: normal; vertical-align: top;
  margin-left: 4px;
}
.we-stat__label {
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--we-text-dim); margin-top: 6px;
  font-family: var(--we-mono);
}
.we-stat__label[data-zero] { color: var(--we-text-mute); }

/* ============ CAPABILITIES ============ */
.we-cap {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--we-line);
}
.we-cap__head {
  display: grid; grid-template-columns: auto 1.4fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.we-cap__lede {
  grid-column: 1 / -1;
  max-width: 70ch;
  color: var(--we-text-dim);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 0;
}
.we-cap__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--we-line);
  border: 1px solid var(--we-line);
}
.we-cap__card {
  background: var(--we-bg);
  padding: 28px 24px 28px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.we-cap__card:hover { background: var(--we-panel); }
.we-cap__art {
  width: 100%; aspect-ratio: 400/140;
  border-radius: 4px; overflow: hidden;
  background: #08080a;
  border: 1px solid var(--we-line);
}
.we-cap__art svg { width: 100%; height: 100%; display: block; }
.we-cap__class {
  font-family: var(--we-mono); font-size: 10px;
  color: var(--we-orange-2);
  letter-spacing: 0.08em;
}
.we-cap__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--we-mono); font-size: 11px;
  color: var(--we-text-mute);
}
.we-cap__card h3 {
  font-family: var(--we-serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1; margin: 4px 0;
  font-weight: 400;
}
.we-cap__card h3 em { font-style: italic; color: var(--we-lime); }
.we-cap__card p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--we-text-dim);
  margin: 0;
}
.we-cap__card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--we-text-dim);
}
.we-cap__card ul span { color: var(--we-orange-2); margin-right: 6px; }

/* ============ COMMERCE FEED ============ */
.we-feed {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--we-line);
}
.we-feed__head {
  margin-bottom: 50px;
  max-width: 800px;
}
.we-feed__head h2 { margin: 14px 0; }
.we-feed__head h2 em { font-style: italic; color: var(--we-lime); }
.we-feed__head .lede {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6; color: var(--we-text-dim);
  max-width: 70ch;
}

.we-feed__rig {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1px;
  background: var(--we-line);
  border: 1px solid var(--we-line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 640px;
}

/* Side: filters + summary */
.we-feed__side {
  background: var(--we-panel);
  display: flex; flex-direction: column;
  padding: 20px;
  gap: 24px;
}
.we-feed__filters {
  display: flex; flex-direction: column;
  gap: 4px;
}
.we-filter {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--we-sans);
  text-align: left;
  color: var(--we-text-dim);
  transition: background .2s, color .2s, border-color .2s;
}
.we-filter:hover { background: var(--we-panel-2); color: var(--we-text); }
.we-filter.is-active {
  background: var(--we-panel-2);
  border-color: var(--we-line-2);
  color: var(--we-text);
}
.we-filter__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.we-filter__dot.is-all { background: var(--we-text); }
.we-filter__dot.is-pos { background: var(--we-orange); }
.we-filter__dot.is-online { background: var(--we-lime); }
.we-filter__dot.is-inv { background: #c39bff; }
.we-filter__dot.is-pay { background: #6cd9ff; }
.we-filter__lbl {
  font-size: 13px;
}
.we-filter__ct {
  font-family: var(--we-mono);
  font-size: 10.5px;
  color: var(--we-text-mute);
  background: var(--we-bg);
  padding: 3px 8px; border-radius: 999px;
}
.we-filter.is-active .we-filter__ct {
  color: var(--we-orange-2);
  background: rgba(242, 82, 46, 0.14);
}

.we-feed__summary {
  margin-top: auto;
  padding: 18px;
  background: var(--we-panel-2);
  border-radius: 6px;
  border: 1px solid var(--we-line);
}
.we-feed__summary-head {
  display: flex; justify-content: space-between;
  font-family: var(--we-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--we-text-mute);
  margin-bottom: 8px;
}
.we-feed__summary-num {
  font-family: var(--we-serif);
  font-style: italic; font-weight: 300;
  font-size: 42px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--we-lime);
  margin-bottom: 14px;
}
.we-feed__summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 12.5px;
  border-top: 1px solid var(--we-line);
  font-family: var(--we-mono);
}
.we-feed__summary-key { color: var(--we-text-mute); letter-spacing: 0.04em; }
.we-feed__summary-val { color: var(--we-text); }
.we-feed__delta { color: var(--we-orange-2); }
.we-feed__bars {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px; align-items: end;
  margin-top: 16px; height: 80px;
  border-top: 1px solid var(--we-line); padding-top: 12px;
}
.we-feed__bar {
  display: flex; flex-direction: column; gap: 4px;
  height: 100%; align-items: stretch;
}
.we-feed__bar span {
  display: block;
  background: linear-gradient(to top, rgba(212, 255, 58, 0.18), rgba(212, 255, 58, 0.55));
  border-radius: 2px 2px 0 0;
  margin-top: auto;
}
.we-feed__bar.is-today span {
  background: linear-gradient(to top, rgba(242, 82, 46, 0.3), var(--we-orange));
}
.we-feed__bar label {
  font-family: var(--we-mono); font-size: 8px;
  color: var(--we-text-mute);
  text-align: center; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.we-feed__bar.is-today label { color: var(--we-orange-2); }

/* Main: ticker + detail */
.we-feed__main {
  background: var(--we-bg);
  display: flex; flex-direction: column;
  position: relative;
}
.we-feed__bar-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--we-line);
  font-family: var(--we-mono); font-size: 11px;
}
.we-feed__bar-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--we-text-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 10.5px;
}
.we-feed__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--we-orange);
  box-shadow: 0 0 0 0 var(--we-orange-glow);
  animation: wePulse 1.6s ease infinite;
}
.we-feed__bar-meta { display: flex; gap: 8px; align-items: center; }
.we-feed__pill {
  padding: 4px 10px; border-radius: 999px;
  background: var(--we-panel);
  border: 1px solid var(--we-line);
  color: var(--we-text-dim);
  font-size: 10.5px;
}
.we-feed__pill--orange {
  background: rgba(242, 82, 46, 0.14);
  border-color: rgba(242, 82, 46, 0.3);
  color: var(--we-orange-2);
}

.we-feed__list {
  list-style: none; margin: 0; padding: 12px 16px;
  display: flex; flex-direction: column;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.we-feed-row {
  display: grid;
  grid-template-columns: 70px 70px 1fr auto;
  gap: 16px; align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid var(--we-line);
  font-family: var(--we-mono);
  font-size: 12.5px;
  cursor: pointer;
  transition: background .2s, transform .35s, opacity .35s;
  animation: weRowIn .45s cubic-bezier(.2, 0, .2, 1.2);
}
.we-feed-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.we-feed-row.is-active {
  background: rgba(242, 82, 46, 0.06);
  border-left: 2px solid var(--we-orange);
  padding-left: 2px;
}
.we-feed-row.is-out {
  transform: translateY(8px);
  opacity: 0;
}
@keyframes weRowIn {
  from { transform: translateY(-6px); opacity: 0; background: rgba(212, 255, 58, 0.06); }
  to { transform: translateY(0); opacity: 1; background: transparent; }
}
.we-feed-row__time {
  color: var(--we-text-mute);
  font-size: 11px;
}
.we-feed-row__type {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--we-text);
}
.we-feed-row__type::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.we-feed-row[data-type="pos"] .we-feed-row__type::before { background: var(--we-orange); }
.we-feed-row[data-type="online"] .we-feed-row__type::before { background: var(--we-lime); }
.we-feed-row[data-type="inv"] .we-feed-row__type::before { background: #c39bff; }
.we-feed-row[data-type="pay"] .we-feed-row__type::before { background: #6cd9ff; }
.we-feed-row__desc {
  color: var(--we-text-dim);
  font-family: var(--we-sans);
  font-size: 13.5px;
}
.we-feed-row__amt {
  font-family: var(--we-serif);
  font-style: italic; font-weight: 300;
  font-size: 18px; color: var(--we-lime);
  letter-spacing: -0.01em;
}
.we-feed-row[data-type="inv"] .we-feed-row__amt { color: #c39bff; font-size: 14px; }
.we-feed-row[data-type="pay"] .we-feed-row__amt { color: #6cd9ff; }
.we-feed-row.is-refund .we-feed-row__amt { color: var(--we-orange-2); }

/* Detail panel — slides up from bottom over the list */
.we-feed__detail {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--we-panel);
  border-top: 1px solid var(--we-orange);
  padding: 18px 20px 20px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}
.we-feed__detail.is-open {
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.4);
}
.we-feed__detail-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--we-line);
  padding-bottom: 12px;
}
.we-feed__detail-tag {
  padding: 4px 10px; border-radius: 999px;
  background: rgba(242, 82, 46, 0.18);
  color: var(--we-orange-2);
  font-family: var(--we-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.we-feed__detail-time {
  font-family: var(--we-mono); font-size: 11px;
  color: var(--we-text-mute);
}
.we-feed__detail-close {
  margin-left: auto;
  background: transparent; border: 0;
  color: var(--we-text-mute);
  font-size: 18px; line-height: 1; cursor: pointer;
  padding: 4px 8px; border-radius: 4px;
  transition: color .2s, background .2s;
}
.we-feed__detail-close:hover { color: var(--we-text); background: var(--we-line); }
.we-feed__detail-body { display: grid; gap: 8px; }
.we-feed__detail-line {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--we-line);
  font-family: var(--we-mono); font-size: 12px;
}
.we-feed__detail-line span { color: var(--we-text-mute); letter-spacing: 0.06em; text-transform: uppercase; font-size: 10.5px; }
.we-feed__detail-line strong {
  color: var(--we-text); font-weight: 500;
  font-family: var(--we-sans); font-size: 14px;
}

/* ============ VS ============ */
.we-vs {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--we-line);
}
.we-vs__head {
  margin-bottom: 40px;
  max-width: 900px;
}
.we-vs__head h2 {
  font-family: var(--we-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.we-vs__head h2 em { font-style: italic; color: var(--we-lime); }
.we-vs__lede {
  color: var(--we-text-dim); font-size: 14.5px; line-height: 1.55;
  max-width: 56ch; margin: 14px 0 0;
}

/* Vs reformatted as two side-by-side receipts */
.we-vs__receipts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: center;
}
.we-receipt {
  position: relative;
  width: 100%;
  max-width: 360px;
  font-family: var(--we-mono);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}
.we-receipt__inner {
  background: #f5efe2;
  color: #14110d;
  padding: 18px 22px 22px;
  font-size: 12px;
  line-height: 1.5;
}
.we-receipt--bad .we-receipt__inner {
  background: #efeae0;
  color: #5a564b;
  filter: grayscale(0.4);
}
.we-receipt--good .we-receipt__inner {
  background:
    linear-gradient(170deg, rgba(212, 255, 58, 0.04), transparent 60%),
    #f5efe2;
}
/* Serrated paper edges */
.we-receipt__edge {
  height: 8px;
  background:
    linear-gradient(45deg, #f5efe2 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(-45deg, #f5efe2 25%, transparent 25%) 0 0 / 12px 12px;
  background-color: transparent;
}
.we-receipt--bad .we-receipt__edge {
  background:
    linear-gradient(45deg, #efeae0 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(-45deg, #efeae0 25%, transparent 25%) 0 0 / 12px 12px;
}
.we-receipt__edge--top { transform: rotate(180deg); }

.we-receipt__head {
  text-align: center;
  margin-bottom: 12px;
}
.we-receipt__brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.we-receipt__sub {
  font-size: 10px;
  color: rgba(20, 17, 13, 0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.we-receipt__date {
  font-size: 10px;
  color: rgba(20, 17, 13, 0.55);
  letter-spacing: 0.04em;
}
.we-receipt__rule {
  border-top: 1px dashed rgba(20, 17, 13, 0.35);
  margin: 8px 0;
}
.we-receipt__items {
  list-style: none;
  margin: 0; padding: 0;
}
.we-receipt__items li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  padding: 6px 0;
  align-items: baseline;
  font-size: 11.5px;
}
.we-receipt__items .lbl {
  color: rgba(20, 17, 13, 0.55);
  letter-spacing: 0.04em;
}
.we-receipt__items li::after {
  content: '..............................';
  letter-spacing: 1px;
  color: rgba(20, 17, 13, 0.30);
  overflow: hidden;
  white-space: nowrap;
  grid-column: 2;
}
.we-receipt__items .val {
  font-weight: 500;
  color: var(--we-paper-ink, #14110d);
  text-align: right;
}
.we-receipt--bad .we-receipt__items .val {
  color: #5a564b;
  text-decoration: line-through;
  text-decoration-color: rgba(90, 86, 75, 0.5);
}

.we-receipt__total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
}
.we-receipt__total-val { font-size: 14px; }
.we-receipt__total-val--good {
  color: #c93b1c;
  font-style: italic;
  font-family: var(--we-serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
}
.we-receipt__foot {
  text-align: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(20, 17, 13, 0.35);
}
.we-receipt__foot-line {
  font-size: 10.5px;
  color: rgba(20, 17, 13, 0.55);
  font-style: italic;
  margin-bottom: 10px;
}
.we-receipt__barcode {
  display: flex; justify-content: center; gap: 1.5px;
  height: 22px;
}
.we-receipt__barcode span {
  display: block;
  width: 2px;
  height: 100%;
  background: #14110d;
}
.we-receipt__barcode span:nth-child(2n) { width: 1px; height: 80%; }
.we-receipt__barcode span:nth-child(3n) { width: 3px; }
.we-receipt__qr {
  display: grid;
  grid-template-columns: repeat(4, 7px);
  grid-gap: 1.5px;
  justify-content: center;
  margin: 0 auto;
}
.we-receipt__qr .qr-dot {
  width: 7px; height: 7px;
  background: #14110d;
}
.we-receipt__qr .qr-dot:nth-child(3),
.we-receipt__qr .qr-dot:nth-child(7),
.we-receipt__qr .qr-dot:nth-child(10),
.we-receipt__qr .qr-dot:nth-child(14) { background: transparent; }

/* ============ HARDWARE LINEUP ============ */
.we-hw {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--we-line);
}
.we-hw__head {
  margin-bottom: 50px;
  max-width: 800px;
}
.we-hw__head h2 {
  font-family: var(--we-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0;
}
.we-hw__head h2 em { font-style: italic; color: var(--we-lime); }
.we-hw__head .lede {
  color: var(--we-text-dim);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  max-width: 70ch;
}

.we-hw__rig {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.we-hw__rail {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--we-line);
  border: 1px solid var(--we-line);
  border-radius: 8px;
  overflow: hidden;
}
.we-hw__device {
  background: var(--we-bg);
  padding: 24px 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  cursor: pointer;
  position: relative;
  transition: background .25s, transform .35s cubic-bezier(.4, 0, .2, 1);
  outline: none;
}
.we-hw__device:hover {
  background: var(--we-panel);
}
.we-hw__device:focus-visible {
  outline: 2px solid var(--we-orange-2);
  outline-offset: -2px;
}
.we-hw__device.is-active {
  background: var(--we-panel);
}
.we-hw__device.is-active::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--we-orange);
}
.we-hw__device-art {
  width: 100%;
  aspect-ratio: 120 / 80;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.we-hw__device-art svg {
  width: 80%; height: 80%;
  display: block;
}
.we-hw__device.is-active .we-hw__device-art {
  transform: perspective(800px) rotateX(-12deg) translateY(-4px) scale(1.02);
}
.we-hw__device-name {
  font-family: var(--we-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--we-text);
}
.we-hw__device-tag {
  font-family: var(--we-mono);
  font-size: 10.5px;
  color: var(--we-text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.we-hw__device.is-active .we-hw__device-tag {
  color: var(--we-orange-2);
}

.we-hw__detail {
  background: var(--we-panel);
  border: 1px solid var(--we-line);
  border-radius: 8px;
  padding: 28px 32px;
  position: relative;
  min-height: 200px;
}
.we-hw__detail-card {
  display: none;
  animation: weHwIn .35s cubic-bezier(.2, 0, .2, 1.2);
}
.we-hw__detail-card.is-active { display: block; }
@keyframes weHwIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.we-hw__detail-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(242, 82, 46, 0.18);
  color: var(--we-orange-2);
  border-radius: 999px;
  font-family: var(--we-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.we-hw__detail-card h3 {
  font-family: var(--we-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 12px;
}
.we-hw__detail-card p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--we-text-dim);
  max-width: 68ch;
}
.we-hw__detail-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  font-size: 13px;
  color: var(--we-text-dim);
}
.we-hw__detail-list span {
  color: var(--we-orange-2);
  margin-right: 6px;
}

/* ============ PROCESS ============ */
.we-process {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--we-line);
}
.we-process__head { margin-bottom: 50px; }
.we-process__head h2 {
  font-family: var(--we-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.we-process__head h2 em { font-style: italic; color: var(--we-lime); }
.we-process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--we-line);
  border: 1px solid var(--we-line);
  border-radius: 6px; overflow: hidden;
}
.we-process__steps li {
  background: var(--we-bg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s;
}
.we-process__steps li:hover { background: var(--we-panel); }
.we-process__week {
  font-family: var(--we-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--we-orange-2);
}
.we-process__steps h4 {
  font-family: var(--we-serif);
  font-size: 22px; line-height: 1.15;
  font-weight: 400; margin: 0;
}
.we-process__steps p {
  font-size: 13px; line-height: 1.55;
  color: var(--we-text-dim); margin: 0;
}

/* ============ CTA OUTRO ============ */
.we-cta {
  position: relative;
  padding: 120px 40px 100px;
  text-align: center;
  border-top: 1px solid var(--we-line);
  overflow: hidden;
}
.we-cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.6;
}
.we-cta__rotor {
  position: relative; z-index: 1;
  width: clamp(280px, 40vw, 460px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.we-cta__rotor svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: weRotor 24s linear infinite;
}
@keyframes weRotor {
  to { transform: rotate(360deg); }
}
.we-cta__rotor .rotor-text {
  font-family: var(--we-mono); font-size: 16px;
  letter-spacing: 0.18em; text-transform: uppercase;
  fill: var(--we-text-dim);
}
.we-cta__btn {
  position: relative; z-index: 2;
  display: inline-grid; place-items: center;
  width: clamp(120px, 16vw, 180px); aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--we-lime); color: #0a0a0a;
  font-family: var(--we-mono); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s, background .25s;
  box-shadow: 0 0 0 0 var(--we-lime-glow);
}
.we-cta__btn:hover {
  background: var(--we-lime-2);
  box-shadow: 0 0 40px var(--we-lime-glow);
}
.we-cta__lines {
  position: relative; z-index: 1;
  margin-top: 24px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  font-family: var(--we-mono); font-size: 11px;
  color: var(--we-text-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .we-cta__rotor svg { animation: none; }
  .we-feed-row { animation: none; }
  .we-hero__eyebrow .dot,
  .we-statusbar__pulse,
  .we-feed__pulse,
  .we-dock__pulse,
  .we-dock__pub { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .we-feed__rig { grid-template-columns: 1fr; min-height: 0; }
  .we-feed__side { padding: 16px; }
  .we-feed__filters { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .we-filter { flex: 1 1 calc(50% - 6px); min-width: 150px; }
  .we-feed__summary { margin-top: 14px; }
  .we-cap__grid { grid-template-columns: repeat(2, 1fr); }
  .we-process__steps { grid-template-columns: repeat(2, 1fr); }
  .we-intro__grid { grid-template-columns: repeat(2, 1fr); }
  .we-vs__receipts { grid-template-columns: 1fr; gap: 28px; }
  .we-hw__rail { grid-template-columns: repeat(2, 1fr); }
  .we-hw__detail-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .we-hero { padding: 16px 20px 0; }
  .we-intro, .we-cap, .we-feed, .we-vs, .we-hw, .we-process { padding-left: 20px; padding-right: 20px; }
  .we-cta { padding: 80px 20px 60px; }
  .we-dock { display: none; }
  .we-statusbar { gap: 16px; font-size: 9.5px; }
  .we-hero__bottom { grid-template-columns: 1fr; gap: 24px; }
  .we-hero__actions { justify-content: flex-start; }
  .we-cap__grid { grid-template-columns: 1fr; }
  .we-process__steps { grid-template-columns: 1fr; }
  .we-intro__grid { grid-template-columns: 1fr 1fr; }
  .we-hw__rail { grid-template-columns: 1fr; }
  .we-hw__device { padding: 16px 18px; }
  .we-hw__detail { padding: 22px 20px; }
  .we-hw__detail-list { grid-template-columns: 1fr; }
  .we-receipt { max-width: 100%; }
  .we-feed__head h2 { font-size: clamp(36px, 9vw, 60px); }
  .we-filter { flex: 1 1 calc(100% - 6px); }
  .we-feed-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas: 'time type' 'desc desc' 'amt amt';
    gap: 6px; padding: 14px 6px;
  }
  .we-feed-row__time { grid-area: time; }
  .we-feed-row__type { grid-area: type; justify-self: end; }
  .we-feed-row__desc { grid-area: desc; }
  .we-feed-row__amt { grid-area: amt; justify-self: end; }
  .we-feed__list { padding: 8px 12px; }
  .we-feed__bars { height: 56px; }
}
