:root {
  --card: #ffffff;
  --page: #f6f6f6;
  --radius-box: 1rem;
  --radius-field: 0.625rem;
  --ink-30: rgba(18, 18, 18, 0.3);
}

.industry-page {
  letter-spacing: 0;
}

.industry-page button,
.industry-page input,
.industry-page select,
.industry-page textarea {
  font: inherit;
}

.industry-page .nav-trigger svg {
  width: 14px;
  height: 14px;
}

.industry-result-top,
.industry-form-head,
.industry-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* ============ Hero (mirrors the homepage hero) ============ */
.hero.industry-hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 56px;
  text-align: center;
}

/* ============ Floating hero decor ============ */
/* Social-platform chips + short-form video mockups that drift gently around
   the hero. Unlike the homepage (which pins these to the full, non-scrolling
   viewport), here they're absolutely positioned within the hero section only,
   so they scroll away naturally with the rest of the page. */
.floaties {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100vw, 1720px);
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.floaty {
  position: absolute;
  will-change: transform;
  animation: industry-floatA var(--dur, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.floaty > * {
  --r: 0deg;
  transform: rotate(var(--r));
  animation: industry-sway calc(var(--dur, 18s) * 1.3) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.chip {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px -14px rgba(18, 18, 18, 0.45);
}

.chip.tt {
  background: #010101;
}

.chip.chatgpt {
  background: #101010;
  color: #fff;
}

.chip.claude {
  background: #fbf6ef;
}

.chip svg {
  width: 30px;
  height: 30px;
}

.chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-mode="agent"] .mode-llm,
[data-mode="llm"] .mode-agent {
  display: none !important;
}

.short {
  position: relative;
  width: 124px;
  height: 208px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 22px 44px -16px rgba(18, 18, 18, 0.5);
}

.short img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.short .plat {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.short .plat.ig {
  background: linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5);
}

.short .plat.tt {
  background: #010101;
}

.short .plat svg {
  width: 14px;
  height: 14px;
}

.short::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
}

.short .play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -17px 0 0 -17px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.short .play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.short .dur {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.short .rail {
  position: absolute;
  right: 7px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.short .rail .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8.5px;
  font-weight: 700;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.short .rail svg {
  width: 16px;
  height: 16px;
}

.short .caption {
  position: absolute;
  left: 9px;
  right: 28px;
  bottom: 9px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.short .caption .ava {
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.short .caption .bars {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.short .caption .bars i {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.short .caption .bars i:nth-child(2) {
  width: 62%;
  background: rgba(255, 255, 255, 0.6);
}

.f-ig {
  top: 18%;
  left: 7%;
  --dur: 17s;
  --delay: -2s;
}
.f-ig > * {
  --r: -8deg;
}

.f-tt {
  top: 14%;
  right: 7%;
  --dur: 19s;
  --delay: -4s;
  animation-name: industry-floatB;
}
.f-tt > * {
  --r: 8deg;
}

.f-clip-tt {
  bottom: 8%;
  left: 6%;
  --dur: 24s;
  --delay: -1s;
  animation-name: industry-floatC;
}
.f-clip-tt > * {
  --r: -6deg;
}

.f-clip-ig {
  bottom: 8%;
  right: 6%;
  --dur: 22s;
  --delay: -7s;
  animation-name: industry-floatA;
}
.f-clip-ig > * {
  --r: 6deg;
}

@keyframes industry-floatA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -28px);
  }
}

@keyframes industry-floatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-14px, -22px);
  }
}

@keyframes industry-floatC {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-10px, -18px);
  }
  66% {
    transform: translate(8px, -30px);
  }
}

@keyframes industry-sway {
  0%,
  100% {
    transform: rotate(var(--r));
  }
  50% {
    transform: rotate(calc(var(--r) + 4deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .floaty,
  .floaty > * {
    animation: none;
  }
}

/* Tablets and smaller: hide the decor to keep the hero uncluttered. */
@media (max-width: 1280px) {
  .floaties {
    display: none;
  }
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin: 0 auto;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero .sub {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: 26px auto 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--ink-60);
  font-weight: 500;
}

.mode-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.mode-toggle button {
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.mode-label {
  padding: 3px 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: clamp(12.5px, 1vw, 14px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  transition: color 0.16s ease;
}

.mode-label:hover,
.mode-label.active {
  color: var(--ink);
}

.mode-toggle button.mode-switch {
  position: relative;
  flex: none;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 10px 20px -14px rgba(56, 71, 254, 0.85);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.mode-switch::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(18, 18, 18, 0.2);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-mode="llm"] .mode-switch::before {
  transform: translateX(20px);
}

.mode-switch:focus-visible,
.mode-label:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.composer-wrap {
  position: relative;
  width: min(720px, 100%);
  margin: 24px auto 0;
}

.composer-wrap::before {
  content: "";
  position: absolute;
  inset: -36px -28px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(55% 65% at 50% 50%, rgba(56, 71, 254, 0.3), rgba(56, 71, 254, 0) 72%);
  filter: blur(28px);
  animation: industry-hero-glow 5.5s ease-in-out infinite;
}

@keyframes industry-hero-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.97);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .composer-wrap::before {
    animation: none;
    opacity: 0.7;
  }
}

.composer {
  position: relative;
  z-index: 1;
  padding: 18px 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-box);
  background: var(--card);
  text-align: left;
  box-shadow: 0 12px 40px -18px rgba(18, 18, 18, 0.25);
}

.composer-pane.llm-pane {
  display: none;
}

[data-mode="llm"] .composer-pane.agent-pane {
  display: none;
}

[data-mode="llm"] .composer-pane.llm-pane {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mcp-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 13px 13px 13px 15px;
  border-radius: 13px;
  background: #101010;
  color: #f7f7f7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mcp-prompt {
  color: rgba(255, 255, 255, 0.44);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
}

.mcp-command {
  min-width: 0;
  flex: 1;
}

.mcp-command > span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mcp-command code {
  display: block;
  white-space: normal;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
}

.mcp-command code span {
  display: block;
  white-space: pre-wrap;
}

.mcp-command code .command-nowrap {
  white-space: pre;
}

.mcp-command code .command-url {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.copy-mcp {
  display: grid;
  flex: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.copy-mcp:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.copy-mcp.copied {
  background: var(--primary);
  border-color: var(--primary);
}

.llm-targets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.llm-targets button,
.llm-targets span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--page);
  color: var(--ink-60);
  font-size: 12.5px;
  font-weight: 700;
}

.llm-targets button {
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.llm-targets button:hover {
  border-color: rgba(56, 71, 254, 0.3);
  color: var(--ink);
  transform: translateY(-1px);
}

.llm-targets button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.llm-targets button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.field-wrap {
  position: relative;
  min-height: 52px;
}

.field-anim,
.field-input {
  padding: 6px 6px 10px;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.45;
}

.field-anim {
  position: absolute;
  inset: 0;
  color: var(--ink);
  pointer-events: none;
}

.field-anim.is-placeholder .typed {
  color: var(--ink-30);
}

.field-anim.hidden {
  display: none;
}

.field-anim .typed {
  white-space: pre-wrap;
}

.field-input {
  display: block;
  width: 100%;
  min-height: 52px;
  max-height: 160px;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.field-input::placeholder {
  color: transparent;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: -0.18em;
  background: var(--primary);
  animation: industry-hero-blink 1s steps(1) infinite;
}

@keyframes industry-hero-blink {
  50% {
    opacity: 0;
  }
}

.composer .toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.pills {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-field);
}

.pills span {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--ink-60);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
}

.pills span + span {
  border-left: 1px solid var(--line);
}

.pills span.active {
  background: var(--primary);
  color: #fff;
}

.target {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-45);
  font-size: 12.5px;
  font-weight: 500;
}

.target .box {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px 8px;
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--page);
  color: var(--ink-60);
  font-size: 12.5px;
  font-weight: 500;
}

.send {
  display: grid;
  place-items: center;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}

.send:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.composer-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  text-align: center;
  color: var(--ink-45);
  font-size: 12.5px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero.industry-hero {
    padding: 40px 20px 40px;
  }

  .composer .toolbar {
    flex-wrap: wrap;
  }

  .ig-badge {
    display: none;
  }

  .mode-toggle {
    width: 100%;
    gap: 8px;
  }

  .mode-label {
    flex: 1;
    max-width: 124px;
    font-size: 12.5px;
  }

  .mcp-line {
    align-items: flex-start;
  }

  .mcp-command code {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.industry-search-section,
.industry-story,
.industry-faq {
  padding: 76px 0;
  border-top: 1px solid var(--line-strong);
}

.industry-section-head {
  align-items: end;
  margin-bottom: 28px;
}

.industry-section-head h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  line-height: 1.12;
  font-weight: 900;
}

.industry-section-head p {
  max-width: 700px;
  margin-top: 16px;
  color: var(--ink-60);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.industry-search-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.industry-preview-form,
.industry-output {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px -32px rgba(17, 18, 23, 0.28);
}

.industry-preview-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.industry-form-head {
  align-items: center;
  padding-bottom: 4px;
}

.industry-form-head strong,
.industry-output-empty strong,
.industry-loading strong,
.industry-result-top strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.industry-form-head span,
.industry-result-top span {
  display: block;
  margin-top: 4px;
  color: var(--ink-45);
  font-size: 12px;
  font-weight: 800;
}

.industry-run-btn {
  flex: none;
  gap: 8px;
  border: 0;
  cursor: pointer;
}

.industry-run-btn svg {
  width: 16px;
  height: 16px;
}

.industry-run-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.industry-preview-form label {
  display: grid;
  gap: 7px;
}

.industry-preview-form label span {
  color: var(--ink-45);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-preview-form input,
.industry-preview-form select,
.industry-preview-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfbfc;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.industry-preview-form input,
.industry-preview-form select {
  min-height: 44px;
  padding: 0 12px;
}

.industry-preview-form textarea {
  min-height: 106px;
  padding: 12px;
  resize: vertical;
  line-height: 1.45;
}

.industry-preview-form input:focus,
.industry-preview-form select:focus,
.industry-preview-form textarea:focus {
  border-color: rgba(56, 71, 254, 0.5);
  box-shadow: 0 0 0 3px rgba(56, 71, 254, 0.09);
}

.industry-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industry-output {
  min-height: 100%;
  overflow: hidden;
}

.industry-output-empty,
.industry-loading {
  display: grid;
  min-height: 430px;
  place-items: center;
  align-content: center;
  padding: 34px;
  text-align: center;
}

.industry-output-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(56, 71, 254, 0.1);
  color: var(--primary);
}

.industry-output-icon svg {
  width: 23px;
  height: 23px;
}

.industry-output-empty p,
.industry-loading span {
  max-width: 460px;
  margin-top: 9px;
  color: var(--ink-60);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.industry-sample-lines {
  display: grid;
  gap: 9px;
  width: min(360px, 100%);
  margin-top: 20px;
}

.industry-sample-lines i {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.12), rgba(56, 71, 254, 0.12));
  filter: blur(2.5px);
}

.industry-sample-lines i:nth-child(2) {
  width: 84%;
  margin-left: 8%;
}

.industry-sample-lines i:nth-child(3) {
  width: 62%;
  margin-left: 19%;
}

.industry-loading-dots {
  display: inline-flex;
  gap: 5px;
  margin-top: 16px;
}

.industry-loading-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: industryDot 1s infinite ease-in-out;
}

.industry-loading-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.industry-loading-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes industryDot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.industry-result-top {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.industry-result-top .btn-dark {
  flex: none;
}

.industry-note {
  margin: 14px 18px 0;
  color: var(--ink-60);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.industry-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 18px;
}

.industry-preview-metrics div {
  min-height: 68px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfbfc;
}

.industry-preview-metrics span {
  display: block;
  color: var(--ink-45);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-preview-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.industry-table-wrap {
  overflow: auto;
  margin: 0 18px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.industry-preview-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #fff;
}

.industry-preview-table th,
.industry-preview-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.industry-preview-table th {
  background: #fbfbfc;
  color: var(--ink-45);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-preview-table td {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.industry-creator-cell {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 210px;
}

.industry-creator-cell strong,
.industry-creator-cell small {
  display: block;
}

.industry-creator-cell strong {
  color: var(--ink);
  font-size: 14px;
}

.industry-creator-cell small {
  margin-top: 2px;
  color: var(--ink-45);
  font-size: 12px;
}

.industry-email-cell {
  display: grid;
  gap: 6px;
  min-width: 145px;
}

.industry-email-cell span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.industry-email-cell a,
.industry-result-gate a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.industry-email-cell.muted span {
  color: var(--ink-45);
}

.industry-email-blur {
  display: inline-block;
  width: fit-content;
  filter: blur(3.4px);
  opacity: 0.82;
  user-select: none;
}

.industry-score {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(56, 71, 254, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.industry-result-gate,
.industry-locked-prompt {
  display: grid;
  gap: 8px;
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid rgba(56, 71, 254, 0.2);
  border-radius: 12px;
  background: rgba(56, 71, 254, 0.055);
}

.industry-result-gate strong,
.industry-locked-prompt strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.industry-result-gate span,
.industry-locked-prompt p {
  color: var(--ink-60);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 700;
}

.industry-locked-prompt pre {
  position: relative;
  max-height: 96px;
  overflow: hidden;
  white-space: pre-wrap;
  color: var(--ink-60);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.industry-locked-prompt pre::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44px;
  background: linear-gradient(rgba(246, 247, 255, 0), rgba(246, 247, 255, 0.98));
}

.industry-locked-prompt .btn-dark {
  width: fit-content;
  margin-top: 2px;
}

.industry-query-list {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.industry-query-list span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfbfc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.industry-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 60px;
  align-items: start;
}

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

.industry-angle-grid article,
.industry-faq-grid article,
.industry-hub-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.industry-angle-grid article {
  min-height: 188px;
  padding: 18px;
}

.industry-angle-grid article > span,
.industry-hub-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(56, 71, 254, 0.09);
  color: var(--primary);
}

.industry-angle-grid svg,
.industry-hub-card svg {
  width: 20px;
  height: 20px;
}

.industry-angle-grid strong,
.industry-faq-grid h3,
.industry-hub-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.industry-angle-grid strong {
  margin-top: 20px;
}

.industry-angle-grid p,
.industry-faq-grid p,
.industry-hub-card p {
  margin-top: 9px;
  color: var(--ink-60);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.industry-signals .creator-card {
  grid-template-columns: 44px minmax(0, 1fr);
}

.industry-signals .creator-card em {
  display: none;
}

.industry-quote {
  border-top: 1px solid var(--line-strong);
}

.industry-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-faq-grid article {
  padding: 20px;
}

.industry-related {
  border-top: 1px solid var(--line-strong);
}

.industry-hub-hero {
  padding: 82px 0 40px;
  text-align: center;
}

.industry-hub-hero h1 {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: clamp(2.625rem, 4.4vw, 3.625rem);
  line-height: 1.04;
  font-weight: 900;
}

.industry-hub-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--ink-60);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 600;
}

.industry-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 28px 0 86px;
}

.industry-hub-card {
  min-height: 216px;
  padding: 18px;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.industry-hub-card:hover,
.industry-hub-card:focus-visible {
  border-color: rgba(56, 71, 254, 0.35);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -22px rgba(17, 18, 23, 0.24);
}

.industry-hub-card small {
  display: block;
  margin-top: 22px;
  color: var(--ink-45);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-hub-card strong {
  margin-top: 8px;
}

@media (max-width: 1160px) {
  .industry-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .industry-search-grid,
  .industry-story {
    grid-template-columns: 1fr;
  }

  .industry-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 720px) {
  .industry-page .lava .b1 {
    left: 0;
  }

  .industry-page .lava .b2 {
    right: 0;
  }

  .industry-angle-grid,
  .industry-form-row,
  .industry-preview-metrics,
  .industry-hub-grid {
    grid-template-columns: 1fr;
  }

  .industry-section-head h2 {
    font-size: 1.75rem;
  }

  .industry-search-section,
  .industry-story,
  .industry-faq {
    padding: 52px 0;
  }

  .industry-form-head,
  .industry-result-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-run-btn,
  .industry-result-top .btn-dark {
    width: 100%;
  }

  .industry-output-empty,
  .industry-loading {
    min-height: 360px;
    padding: 26px;
  }

  .industry-hub-hero {
    padding: 58px 0 26px;
  }
}
