/* Industry pages — hero uses product-pages.css */

.industry-page {
  background: var(--surface);
}

.industry-page .product-hero-subtitle {
  max-width: 42rem;
  line-height: 1.55;
}

/* Shared section typography */

.industry-section-head {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
}

.industry-section-head .industry-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
  text-wrap: balance;
}

.industry-section-title {
  margin: 0 0 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 450;
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: var(--text);
  text-wrap: balance;
}

.industry-section-lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
}

/* Pillars */

.industry-pillars {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--surface);
}

.industry-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.industry-pillar-grid[data-display-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-pillar-grid[data-display-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.industry-pillar-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  min-height: clamp(14rem, 24vw, 19rem);
  padding: clamp(2.5rem, 4.5vw, 3.75rem) clamp(2.25rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 85% 70% at 50% 0%, rgba(66, 133, 244, 0.06), transparent 62%),
    var(--bg);
}

.industry-pillar-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--text);
  text-align: center;
  text-wrap: balance;
}

.industry-pillar-card p {
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

/* Whitepaper band */

.industry-whitepaper {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--surface);
}

.industry-whitepaper-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      ellipse 52% 88% at 14% 50%,
      color-mix(in srgb, var(--accent) 7%, transparent),
      transparent 68%
    ),
    linear-gradient(165deg, #f8fafc 0%, var(--surface) 52%, #fafaf9 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  isolation: isolate;
}

.industry-whitepaper-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.5rem 0.25rem;
}

.industry-whitepaper-book {
  position: relative;
  width: clamp(8.75rem, 14vw, 10.5rem);
  aspect-ratio: 3 / 4;
  transform: perspective(960px) rotateY(-8deg) rotateX(2deg);
  filter: drop-shadow(0 16px 28px rgba(26, 86, 219, 0.14));
}

.industry-whitepaper-book::before,
.industry-whitepaper-book::after {
  content: "";
  position: absolute;
  inset: 0.4rem 0 0.4rem auto;
  width: calc(100% - 0.4rem);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-left: none;
  border-radius: 0 0.5rem 0.5rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.industry-whitepaper-book::before {
  right: -0.4rem;
  z-index: 0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.industry-whitepaper-book::after {
  right: -0.78rem;
  top: 0.65rem;
  bottom: 0.65rem;
  z-index: -1;
  opacity: 0.88;
}

.industry-whitepaper-book-cover {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0.875rem;
  border-radius: 0.4375rem 0.6875rem 0.6875rem 0.4375rem;
  background: linear-gradient(
    152deg,
    #1e3a8a 0%,
    #1a56db 42%,
    #3b82f6 78%,
    color-mix(in srgb, #6366f1 28%, #3b82f6) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset -2px 0 8px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.industry-whitepaper-book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 42%,
    transparent 100%
  );
  pointer-events: none;
}

.industry-whitepaper-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.industry-whitepaper-icon {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: min(68%, 5rem);
  margin: 0.875rem auto 0.625rem;
  opacity: 0.96;
}

.industry-whitepaper-dots {
  position: relative;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
  background-size: 0.3125rem 0.3125rem;
}

.industry-whitepaper-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 38rem;
}

.industry-whitepaper-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 450;
  letter-spacing: -0.032em;
  line-height: 1.18;
  color: var(--text);
  text-wrap: balance;
}

.industry-whitepaper-copy p {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: var(--muted);
}

.industry-whitepaper-download {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4375rem;
  margin-top: 0.375rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.industry-whitepaper-download svg {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.15s ease;
}

.industry-whitepaper-download:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(26, 86, 219, 0.1);
}

.industry-whitepaper-download:hover svg {
  transform: translateY(1px);
}

.industry-whitepaper-download:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Challenge — full-width row cards */

.industry-challenge {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--surface);
}

.industry-challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.2vw, 1rem);
  width: 100%;
}

.industry-challenge-card {
  display: grid;
  grid-template-columns: minmax(11rem, 15rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2.5rem, 4.5vw, 3.75rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.industry-challenge-card:hover {
  border-color: color-mix(in srgb, var(--line) 55%, var(--accent));
  background: color-mix(in srgb, var(--bg) 90%, var(--surface));
}

.industry-challenge-dept {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.6vw, 2.375rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--text);
  text-wrap: balance;
}

.industry-challenge-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.industry-challenge-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
}

.industry-challenge-row--before {
  padding-bottom: clamp(1.25rem, 2vw, 1.625rem);
  margin-bottom: clamp(1.25rem, 2vw, 1.625rem);
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.industry-challenge-row--after {
  width: 100%;
  padding-left: clamp(0.875rem, 1.5vw, 1.25rem);
  border-left: 2px solid rgba(66, 133, 244, 0.28);
}

.industry-challenge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.industry-challenge-row--after .industry-challenge-label {
  color: #1a56db;
}

.industry-challenge-row p {
  margin: 0;
  max-width: 42rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.industry-challenge-row--before p {
  font-size: clamp(1.0625rem, 1.65vw, 1.3125rem);
  font-weight: 400;
  color: var(--muted);
}

.industry-challenge-row--after p {
  font-size: clamp(1.1875rem, 1.85vw, 1.4375rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

.industry-scroll {
  background: var(--surface);
}

.industry-demo-msg {
  max-width: 92%;
  padding: 0.75rem 0.875rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.industry-demo-msg p {
  margin: 0;
}

.industry-demo-msg--user {
  align-self: flex-end;
  background: var(--text);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.industry-demo-msg--ai {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.industry-demo-cite {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}

.industry-page .cta-section {
  background: var(--surface);
}

/* Hero video stickers (floating stat cards over industry hero media) */

.product-hero-media-window {
  position: relative;
}

.industry-hero-stickers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.industry-hero-sticker {
  position: absolute;
  max-width: min(17rem, 42%);
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
}

.industry-hero-sticker--lead {
  top: 10%;
  left: 4%;
}

.industry-hero-sticker--metric {
  right: 4%;
  bottom: 12%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  max-width: min(19rem, 46%);
}

.industry-hero-sticker-eyebrow {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.industry-hero-sticker-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}

.industry-hero-sticker-headline mark {
  background: none;
  color: #1a56db;
}

.industry-hero-sticker-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.75rem;
}

.industry-hero-sticker-tab {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--muted);
}

.industry-hero-sticker-tab.is-active {
  background: #eff6ff;
  color: #1a56db;
}

.industry-hero-sticker-chart {
  display: grid;
  grid-template-columns: repeat(3, 0.4375rem);
  gap: 0.1875rem;
  align-items: end;
  height: 2rem;
  position: relative;
}

.industry-hero-sticker-bar {
  display: block;
  border-radius: 999px;
  background: #dbeafe;
}

.industry-hero-sticker-bar--1 {
  height: 55%;
}

.industry-hero-sticker-bar--2 {
  height: 80%;
}

.industry-hero-sticker-bar--3 {
  height: 100%;
  background: #1a56db;
}

.industry-hero-sticker-clock {
  position: absolute;
  top: -0.125rem;
  right: -0.375rem;
  color: #1a56db;
}

.industry-hero-sticker-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.industry-hero-sticker-value span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.industry-hero-sticker-label {
  margin: 0.3125rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--muted);
}

.industry-hero-sticker-tag {
  display: inline-block;
  margin-top: 0.4375rem;
  padding: 0.1875rem 0.4375rem;
  border-radius: 999px;
  background: #eff6ff;
  font-size: 0.625rem;
  font-weight: 600;
  color: #1a56db;
}

/* Interactive demo panels (product hero + compact scroll previews) */

.industry-demo-panel {
  max-width: 52rem;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  overflow: hidden;
}

.industry-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 20rem;
}

.industry-demo-picker {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.industry-demo-picker-label {
  margin: 0 0 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.industry-demo-chips {
  display: grid;
  gap: 0.25rem;
}

.industry-demo-chip {
  display: block;
  width: 100%;
  padding: 0.5625rem 0.6875rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.industry-demo-chip:hover {
  background: rgba(17, 24, 39, 0.03);
}

.industry-demo-chip.is-active {
  border-color: var(--line);
  background: var(--bg);
}

.industry-demo-chip-text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.industry-demo-chip-cat {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.industry-demo-chat-wrap {
  display: flex;
  flex-direction: column;
  background: #111827;
}

.industry-demo-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.industry-demo-chat-head strong {
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
}

.industry-demo-chat {
  flex: 1;
  padding: 0.875rem;
  display: grid;
  gap: 0.625rem;
  align-content: start;
  transition: opacity 0.15s ease;
}

.industry-demo-chat.is-fading {
  opacity: 0;
}

.industry-demo-msg {
  max-width: 92%;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.industry-demo-msg--user {
  justify-self: end;
  padding: 0.5625rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3f4f6;
}

.industry-demo-msg--user p {
  margin: 0;
}

.industry-demo-msg--ai {
  justify-self: start;
  color: #d1d5db;
}

.industry-demo-msg--ai p {
  margin: 0 0 0.375rem;
}

.industry-demo-msg--ai p:last-of-type {
  margin-bottom: 0;
}

.industry-demo-msg--ai ul,
.industry-demo-msg--ai ol {
  margin: 0.375rem 0;
  padding-left: 1rem;
}

.industry-demo-msg--ai li {
  margin-bottom: 0.2rem;
}

.industry-demo-msg--ai strong {
  color: #fff;
  font-weight: 600;
}

.industry-demo-cite {
  display: inline-block;
  margin-top: 0.4375rem;
  padding: 0.1875rem 0.4375rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
}

.industry-demo-responses {
  display: none;
}

.product-scene-panel-pad .industry-demo-msg--ai,
.product-scene-panel-pad .industry-demo-msg--user {
  justify-self: stretch;
}

.product-scene-panel-pad .industry-demo-msg--user {
  background: var(--text);
}

.product-scene-panel-pad .industry-demo-msg--ai {
  color: var(--text);
}

.product-scene-panel-pad .industry-demo-msg--ai strong {
  color: var(--text);
}

.product-scene-panel-pad .industry-demo-cite {
  background: #eff6ff;
  color: #1a56db;
}

@media (max-width: 960px) {
  /* Hero — reuse shared product-hero-media canvas (gradient + window); video fills window */
  .industry-page .product-hero-subtitle {
    max-width: none;
    text-wrap: balance;
    font-size: 1rem;
    line-height: 1.45;
  }

  .industry-page .product-hero-media-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .industry-section-head {
    margin-bottom: 1.5rem;
  }

  .industry-section-head .industry-section-title {
    font-size: clamp(1.375rem, 5.5vw, 1.625rem);
  }

  .industry-challenge {
    padding: 0 0 2.5rem;
  }

  .industry-challenge-grid {
    gap: 0.75rem;
  }

  .industry-challenge-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1.125rem;
    border-radius: 14px;
  }

  .industry-challenge-dept {
    width: 100%;
    font-size: 1.125rem;
    letter-spacing: -0.018em;
    line-height: 1.2;
    text-align: left;
    text-wrap: pretty;
  }

  .industry-challenge-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    width: 100%;
  }

  .industry-challenge-row {
    gap: 0.3125rem;
    width: 100%;
    align-items: stretch;
    text-align: left;
  }

  .industry-challenge-row--before {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .industry-challenge-row--after {
    padding: 0.625rem 0.75rem;
    border-left: none;
    border-radius: 10px;
    background: var(--accent-soft);
  }

  .industry-challenge-label {
    display: block;
    width: 100%;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  .industry-challenge-row p {
    width: 100%;
    max-width: none;
  }

  .industry-challenge-row--before p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .industry-challenge-row--after p {
    font-size: 0.9375rem;
    line-height: 1.45;
    font-weight: 500;
  }

  .industry-whitepaper {
    padding: 2rem 0 2.5rem;
  }

  .industry-whitepaper-card {
    grid-template-columns: 1fr;
    gap: 1.125rem;
    padding: 1.125rem 1.25rem 1.375rem;
    border-radius: 16px;
    background:
      radial-gradient(
        ellipse 88% 42% at 50% 0%,
        color-mix(in srgb, var(--accent) 6%, transparent),
        transparent 72%
      ),
      linear-gradient(180deg, #f8fafc 0%, var(--surface) 100%);
  }

  .industry-whitepaper-visual {
    justify-content: center;
    padding: 0.25rem 0;
  }

  .industry-whitepaper-book {
    width: 5.5rem;
    transform: none;
    filter: drop-shadow(0 8px 18px rgba(26, 86, 219, 0.12));
  }

  .industry-whitepaper-book-cover {
    padding: 0.5rem;
  }

  .industry-whitepaper-badge {
    padding: 0.1875rem 0.375rem;
    font-size: 0.4375rem;
    letter-spacing: 0.045em;
    line-height: 1.15;
  }

  .industry-whitepaper-copy {
    gap: 0.75rem;
    max-width: none;
  }

  .industry-whitepaper-copy h2 {
    font-size: 1.1875rem;
    line-height: 1.3;
  }

  .industry-whitepaper-copy p {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .industry-whitepaper-download {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.5625rem 1rem;
    font-size: 0.8125rem;
  }

  .industry-pillars {
    padding: 2rem 0 2.5rem;
  }

  .industry-pillar-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .industry-pillar-card {
    min-height: 0;
    gap: 0.75rem;
    padding: 1.25rem 1.125rem;
    border-radius: 16px;
  }

  .industry-pillar-card h3 {
    font-size: 1.125rem;
  }

  .industry-pillar-card p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .industry-scroll {
    padding-top: 0.5rem;
  }

  .industry-compare-row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .industry-compare-arrow {
    transform: rotate(90deg);
    justify-self: start;
  }

  .industry-demo-layout {
    grid-template-columns: 1fr;
  }

  .industry-demo-picker {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .industry-hero-sticker {
    max-width: min(15rem, 78%);
  }

  .industry-hero-sticker--lead {
    top: 6%;
    left: 3%;
  }

  .industry-hero-sticker--metric {
    right: 3%;
    bottom: 8%;
  }

  .industry-scroll.is-mobile-scroll .chat-feature-preview--how .home-how-flow--embed {
    --home-how-flow-gap: 0.2rem;
  }

  .industry-scroll.is-mobile-scroll .chat-feature-preview--how .home-how-step-label {
    font-size: 0.5625rem;
  }
}

