/* Legally Brief: Texas — May 17, 2026 — "Electric Docket" Sunday Edition */
:root {
  --bg-primary: #05060f;
  --bg-secondary: #0a1020;
  --bg-surface: rgba(120, 200, 255, 0.06);
  --bg-elevated: rgba(255, 200, 140, 0.08);
  --text-primary: #eef3ff;
  --text-secondary: #a8b8d8;
  --text-muted: #6a7a9a;
  --accent-red: #ff5c6c;
  --accent-red-dim: rgba(255, 92, 108, 0.14);
  --accent-green: #3ee8a0;
  --accent-green-dim: rgba(62, 232, 160, 0.12);
  --accent-gold: #e8a84a;
  --accent-gold-dim: rgba(232, 168, 74, 0.16);
  --accent-blue: #5cc4ff;
  --accent-blue-dim: rgba(92, 196, 255, 0.12);
  --glass: rgba(8, 12, 28, 0.65);
  --glass-border: rgba(180, 210, 255, 0.12);
  --glass-highlight: rgba(255, 220, 160, 0.22);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ticker-h: 46px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.65;
  padding-top: calc(var(--ticker-h) + env(safe-area-inset-top));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-tap-highlight-color: transparent;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.mono { font-family: var(--font-mono); }

/* Ticker */
.ticker-strip {
  position: fixed;
  top: 0;
  left: env(safe-area-inset-left);
  right: env(safe-area-inset-right);
  padding-top: env(safe-area-inset-top);
  height: calc(var(--ticker-h) + env(safe-area-inset-top));
  background: rgba(4, 6, 18, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92, 196, 255, 0.22);
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ticker-track {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem 10px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-marquee 85s linear infinite;
}

@keyframes ticker-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  color: var(--text-secondary);
}

.ticker-item em { font-style: italic; color: var(--text-primary); }

.ticker-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-right: 0.35rem;
}

.ticker-divider { color: var(--text-muted); font-size: 0.7rem; }

.ticker-item .mono { font-family: var(--font-mono); }

/* Hero */
.txw-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(2.5rem + env(safe-area-inset-top)) 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.txw-hero__grid {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(92, 196, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(232, 168, 74, 0.1), transparent 50%),
    linear-gradient(165deg, #060818 0%, #05060f 45%, #0a1428 100%);
  opacity: 0.95;
}

.txw-hero__orbit {
  position: absolute;
  width: min(120vw, 900px);
  height: min(120vw, 900px);
  border: 1px solid rgba(92, 196, 255, 0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 80px rgba(92, 196, 255, 0.06);
  pointer-events: none;
}

.txw-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
}

.txw-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.txw-chip {
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 1.1vw, 0.68rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-secondary);
}

.txw-chip--hot {
  border-color: rgba(232, 168, 74, 0.45);
  color: var(--accent-gold);
  background: rgba(232, 168, 74, 0.08);
}

.txw-hero__h1 {
  font-size: clamp(3.5rem, 12vw, 9.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  background: linear-gradient(120deg, #fff 10%, #8ec8ff 55%, #e8a84a 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.txw-hero__h1 span {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.txw-hero__lead {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 58ch;
  margin-bottom: 2rem;
}

.txw-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.txw-hero__stat {
  flex: 1 1 240px;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.txw-hero__stat-k {
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 1vw, 0.68rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.txw-hero__stat-v {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
}

.txw-hero__stat-n {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent-blue);
}

.txw-hero__stat-note {
  margin-top: 0.5rem;
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  color: var(--text-muted);
  line-height: 1.55;
}

.txw-hero__cue {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.txw-hero__cue span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 12px var(--accent-green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

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

/* Ribbon docket */
.txw-ribbon {
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(92, 196, 255, 0.1);
  border-bottom: 1px solid rgba(92, 196, 255, 0.1);
  background: linear-gradient(90deg, rgba(10, 16, 32, 0.9), rgba(5, 8, 20, 0.95));
}

.txw-ribbon__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.txw-ribbon__label {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.txw-ribbon__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.txw-ribbon__tag {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  border-radius: 0.35rem 1.1rem 0.35rem 0.35rem;
  border: 1px solid var(--glass-border);
  background: var(--bg-elevated);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  color: var(--text-secondary);
  transform: rotate(-1.2deg);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.txw-ribbon__tag:nth-child(even) { transform: rotate(1deg); background: var(--bg-surface); }

/* Sections base */
.section { position: relative; }

.txw-section {
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem;
}

.txw-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.txw-section--wide .txw-section__inner { max-width: 1100px; }

.txw-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
}

.txw-h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.txw-body {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.txw-body:last-of-type { margin-bottom: 0; }

.txw-src {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

a.source {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s var(--ease-out-quart), border-color 0.2s;
}

a.source:hover {
  color: var(--accent-blue);
  border-bottom-color: rgba(92, 196, 255, 0.35);
}

/* Hancock split columns */
.txw-section--hancock {
  background: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255, 92, 108, 0.08), transparent 55%), var(--bg-secondary);
}

.txw-split {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.txw-split__pane {
  flex: 1 1 280px;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.txw-split__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.txw-split__tag--pos { color: var(--accent-green); }

/* JPM quote */
.txw-section--jpm {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0c1224 100%);
}

.txw-quote {
  margin: 1.5rem 0;
  padding: 1.75rem 1.5rem 1.75rem 2rem;
  border-left: 4px solid var(--accent-gold);
  background: rgba(232, 168, 74, 0.06);
  border-radius: 0 1rem 1rem 0;
}

.txw-quote p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text-primary);
}

.txw-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Busse impact */
.txw-section--busse { background: var(--bg-primary); }

.txw-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.txw-impact__tag {
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(62, 232, 160, 0.25);
  background: var(--accent-green-dim);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  color: var(--accent-green);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* MV timeline */
.txw-section--mv {
  background: radial-gradient(circle at 90% 30%, rgba(92, 196, 255, 0.1), transparent 45%), var(--bg-secondary);
}

.txw-timeline {
  margin-top: 1.75rem;
  border-left: 2px solid rgba(92, 196, 255, 0.25);
  padding-left: 1.5rem;
}

.txw-tl-node {
  position: relative;
  margin-bottom: 1.35rem;
}

.txw-tl-node::before {
  content: '';
  position: absolute;
  left: -1.62rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(92, 196, 255, 0.2);
}

.txw-tl-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.txw-tl-txt { color: var(--text-secondary); font-size: clamp(0.9rem, 1.1vw, 1.02rem); line-height: 1.65; }

/* Bryant mega */
.txw-section--bryant {
  text-align: center;
  background: #040508;
}

.txw-mega-wrap { padding: 2rem 0; }

.txw-mega {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--accent-blue);
  letter-spacing: -0.06em;
  text-shadow: 0 0 60px rgba(92, 196, 255, 0.25);
}

.txw-mega-cap {
  max-width: 52ch;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

/* Netflix dark */
.txw-section--netflix {
  background: linear-gradient(135deg, #0a0612 0%, #05060f 60%);
}

.txw-darkpanel {
  margin-top: 1.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 92, 108, 0.2);
  background: rgba(255, 92, 108, 0.05);
}

.txw-darkpanel ul {
  margin: 0.75rem 0 0 1.1rem;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.7;
}

/* Cities bars */
.txw-section--cities {
  background: var(--bg-secondary);
}

.txw-bars { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.txw-bar__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.txw-bar__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.txw-bar__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
}

/* Dallas compare */
.txw-section--dallas { background: var(--bg-primary); }

/* Golden stack */
.txw-section--golden {
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232, 168, 74, 0.12), transparent 60%), var(--bg-secondary);
}

.txw-stack {
  margin-top: 1.5rem;
  perspective: 800px;
}

.txw-stack__layer {
  padding: 1.2rem 1.35rem;
  margin-bottom: -0.5rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transform: translateZ(0);
  position: relative;
}

.txw-stack__layer:nth-child(1) { z-index: 3; margin-left: 0; }
.txw-stack__layer:nth-child(2) { z-index: 2; margin-left: 1.5rem; opacity: 0.95; }
.txw-stack__layer:nth-child(3) { z-index: 1; margin-left: 3rem; opacity: 0.88; }

@media (max-width: 768px) {
  .txw-stack__layer:nth-child(2),
  .txw-stack__layer:nth-child(3) { margin-left: 0; }
}

/* Agri pipe */
.txw-section--agri { background: var(--bg-primary); }

.txw-pipe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.txw-pipe__step {
  flex: 1 1 140px;
  min-height: 44px;
  padding: 0.75rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(62, 232, 160, 0.3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: var(--accent-green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Meat statline */
.txw-section--meat {
  background: linear-gradient(180deg, #0a0c18, var(--bg-primary));
}

.txw-statline {
  margin-top: 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  overflow: hidden;
}

.txw-statline__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.txw-statline__row:last-child { border-bottom: 0; }

.txw-statline__k { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.txw-statline__v { font-weight: 700; color: var(--accent-gold); }

/* TCH prose */
.txw-section--tch { background: var(--bg-secondary); }

.txw-prose__block {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

/* LG privacy columns */
.txw-section--lg { background: var(--bg-primary); }

.txw-privacy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.txw-privacy__col {
  flex: 1 1 300px;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.txw-privacy__h {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

/* CVS inline */
.txw-section--cvs {
  padding: 2.5rem 1.25rem;
  background: #080a14;
}

.txw-inline {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(232, 168, 74, 0.35);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: var(--text-secondary);
}

/* Fifth circuit */
.txw-section--fifth { background: var(--bg-secondary); }

/* Week ahead */
.txw-section--ahead {
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(92, 196, 255, 0.08), transparent 55%), var(--bg-primary);
  padding-bottom: 5rem;
}

.txw-ahead__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.txw-ahead__item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.txw-ahead__when {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  min-width: 7rem;
}

.txw-ahead__what { font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.15rem); margin-bottom: 0.35rem; }
.txw-ahead__detail { color: var(--text-secondary); font-size: clamp(0.88rem, 1.05vw, 0.98rem); line-height: 1.6; }

/* Footer */
.site-footer {
  padding: 3rem 1.25rem calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(92, 196, 255, 0.12);
  background: #03040a;
}

.site-footer__brand {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.site-footer__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #17b26a;
  box-shadow: 0 0 10px #17b26a;
}

.site-footer__regen,
.site-footer__session,
.site-footer__timestamp {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.6;
  max-width: 44rem;
  margin: 0 auto 0.5rem;
}

.site-footer__session { color: var(--text-secondary); }

.site-footer__legal {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .txw-split { flex-direction: column; }
  .txw-privacy { flex-direction: column; }
}

@media (max-width: 480px) {
  .txw-hero__stats { flex-direction: column; }
  .txw-pipe__step { flex: 1 1 100%; }
}
