* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #0f172a;
  background:
    radial-gradient(circle at top, var(--industry-glow), transparent 38%),
    linear-gradient(180deg, color-mix(in srgb, var(--industry-surface) 78%, white 22%), #ffffff 42%, #f8fafc 100%);
  font-family: "Geist", "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.industry-page-shell {
  min-height: 100vh;
  padding: 24px 20px 56px;
}

.industry-content,
.industry-topbar,
.industry-footer {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.industry-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}

.industry-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.industry-brand-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-strong));
  color: white;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--industry-accent) 28%, transparent);
}

.industry-topnav,
.industry-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.industry-topnav a,
.industry-footer-links a {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.industry-primary-link,
.industry-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.industry-primary-link {
  color: white;
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-strong));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--industry-accent) 28%, transparent);
}

.industry-secondary-link {
  color: var(--industry-accent-strong);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--industry-accent) 16%, white);
}

.industry-primary-link:hover,
.industry-secondary-link:hover {
  transform: translateY(-1px);
}

.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.industry-hero--hub {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.industry-hero-copy,
.industry-highlight-panel,
.industry-section,
.industry-cta-band,
.industry-footer {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.07);
}

.industry-hero-copy,
.industry-highlight-panel,
.industry-section,
.industry-cta-band {
  border-radius: 32px;
  padding: 30px;
}

.industry-eyebrow,
.industry-card-label {
  margin: 0;
  color: var(--industry-accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industry-hero h1,
.industry-section h2,
.industry-cta-band h2,
.industry-hub-card h2 {
  margin: 14px 0 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-family: "Instrument Serif", Georgia, serif;
}

.industry-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.industry-lead,
.industry-section-heading p,
.industry-card-copy,
.industry-surface-card p,
.industry-footer p,
.industry-cta-band p,
.industry-highlight-callout p,
.industry-faq-item p {
  color: #475569;
  line-height: 1.7;
}

.industry-lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.industry-bullet-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.industry-bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #0f172a;
  font-weight: 500;
}

.industry-bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-strong));
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.industry-highlight-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, var(--industry-panel), transparent);
}

.industry-dashboard-shell {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    linear-gradient(135deg, var(--industry-accent-soft), transparent 45%);
  padding: 20px;
}

.industry-dashboard-shell--compact {
  padding: 18px;
}

.industry-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.industry-dashboard-head h3,
.industry-surface-card h3,
.industry-workflow-step h3 {
  margin: 10px 0 0;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.industry-dashboard-status {
  border-radius: 999px;
  background: color-mix(in srgb, var(--industry-accent-soft) 76%, white);
  color: var(--industry-accent-strong);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-kpi-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.industry-kpi-band--external {
  margin-top: 0;
}

.industry-kpi-pill {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.industry-kpi-pill strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.industry-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 12px;
  margin-top: 14px;
}

.industry-dashboard-grid > :first-child {
  grid-row: span 2;
}

.industry-dashboard-panel {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.84);
  padding: 16px;
}

.industry-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.industry-panel-head span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.industry-chart-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 188px;
  margin-top: 18px;
}

.industry-chart-column {
  display: grid;
  gap: 8px;
}

.industry-chart-column p {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.industry-chart-bar-stack {
  height: 148px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.industry-chart-bar {
  width: 14px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--industry-accent), var(--industry-accent-strong));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--industry-accent) 20%, transparent);
}

.industry-chart-bar--secondary {
  background: rgba(148, 163, 184, 0.52);
  box-shadow: none;
}

.industry-rank-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.industry-rank-item {
  display: grid;
  gap: 8px;
}

.industry-rank-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.industry-rank-copy strong {
  font-size: 0.88rem;
}

.industry-rank-copy span {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
}

.industry-rank-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.9);
  overflow: hidden;
}

.industry-rank-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--industry-accent), var(--industry-accent-strong));
}

.industry-segment-bar {
  display: flex;
  overflow: hidden;
  height: 16px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.88);
  margin-top: 18px;
}

.industry-segment-legend {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.industry-segment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
}

.industry-segment-item i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.industry-dashboard-note {
  margin-top: 14px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--industry-accent-soft) 72%, white);
  padding: 16px;
}

.industry-dashboard-note p {
  margin: 0;
}

.industry-dashboard-note p + p {
  margin-top: 8px;
}

.industry-dashboard-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.industry-dashboard-bubble {
  position: absolute;
  width: min(210px, 42%);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  padding: 12px 14px;
}

.industry-dashboard-bubble span {
  color: var(--industry-accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-dashboard-bubble p {
  margin: 8px 0 0;
  color: #1e293b;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.industry-dashboard-bubble--1 {
  top: 74px;
  right: 18px;
}

.industry-dashboard-bubble--2 {
  bottom: 130px;
  left: 18px;
}

.industry-dashboard-bubble--3 {
  bottom: 18px;
  right: 52px;
}

.industry-transform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 170px minmax(0, 1.08fr);
  gap: 18px;
  margin-top: 24px;
  align-items: center;
}

.industry-artifact-collage {
  position: relative;
  min-height: 340px;
}

.industry-artifact-card {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, var(--industry-accent-soft), transparent 45%);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.industry-artifact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.industry-artifact-card p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.industry-artifact-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--industry-accent-soft) 80%, white);
  color: var(--industry-accent-strong);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-artifact-card--1 {
  top: 0;
  left: 0;
  width: 58%;
}

.industry-artifact-card--2 {
  top: 24px;
  right: 0;
  width: 48%;
}

.industry-artifact-card--3 {
  bottom: 74px;
  left: 10%;
  width: 62%;
}

.industry-artifact-card--4 {
  bottom: 0;
  right: 8%;
  width: 54%;
}

.industry-transform-engine {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 220px;
  align-content: center;
}

.industry-transform-engine::before,
.industry-transform-engine::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(100, 116, 139, 0.5), transparent);
  transform: translateX(-50%);
}

.industry-transform-engine::before {
  top: 0;
  bottom: 58%;
}

.industry-transform-engine::after {
  top: 58%;
  bottom: 0;
}

.industry-transform-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  border-radius: 999px;
  padding: 12px 18px;
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-strong));
  box-shadow: 0 20px 34px color-mix(in srgb, var(--industry-accent) 24%, transparent);
}

.industry-transform-pills {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.industry-transform-pills span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #334155;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-preview-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  margin-top: 24px;
  align-items: start;
}

.industry-preview-copy {
  display: grid;
  gap: 14px;
}

.industry-surface-grid--dense {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-question-board {
  margin-top: 24px;
}

.industry-workflow-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.industry-workflow-strip::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.2), rgba(100, 116, 139, 0.4), rgba(148, 163, 184, 0.2));
}

.industry-workflow-step {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, var(--industry-accent-soft), transparent 45%);
  padding: 20px;
}

.industry-workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--industry-accent-strong);
  background: color-mix(in srgb, var(--industry-accent-soft) 76%, white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-highlight-grid,
.industry-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.industry-metric-card,
.industry-question-card,
.industry-surface-card,
.industry-hub-card {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, var(--industry-accent-soft), transparent 45%);
}

.industry-metric-card,
.industry-question-card,
.industry-surface-card,
.industry-hub-card {
  padding: 20px;
}

.industry-metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.industry-metric-card span {
  display: block;
  margin-top: 8px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}

.industry-highlight-callout {
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--industry-accent-soft) 72%, white);
}

.industry-highlight-callout p + p {
  margin-top: 12px;
}

.industry-section {
  margin-top: 24px;
}

.industry-section-heading {
  max-width: 62ch;
}

.industry-surface-grid,
.industry-question-grid,
.industry-process-grid,
.industry-hub-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.industry-surface-grid,
.industry-question-grid,
.industry-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-question-card {
  display: grid;
  gap: 14px;
}

.industry-question-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--industry-accent-soft);
  color: var(--industry-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.industry-hub-card h2 {
  margin: 12px 0 0;
  font-size: 1.3rem;
}

.industry-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.industry-faq-item {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.8);
  padding: 18px 20px;
}

.industry-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #0f172a;
}

.industry-faq-item summary::-webkit-details-marker {
  display: none;
}

.industry-faq-item[open] {
  background: color-mix(in srgb, var(--industry-accent-soft) 66%, white);
}

.industry-faq-item p {
  margin: 14px 0 0;
}

.industry-cta-band {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.industry-footer {
  margin-top: 24px;
  border-radius: 28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.industry-footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.industry-hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-hub-card h2 a {
  text-decoration: none;
}

.industry-hub-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.industry-hub-kpis span {
  border-radius: 999px;
  background: color-mix(in srgb, var(--industry-accent-soft) 84%, white);
  color: var(--industry-accent-strong);
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .industry-hero,
  .industry-hero--hub,
  .industry-transform-layout,
  .industry-preview-stage,
  .industry-surface-grid,
  .industry-question-grid,
  .industry-process-grid,
  .industry-hub-grid,
  .industry-workflow-strip,
  .industry-cta-band,
  .industry-footer {
    grid-template-columns: 1fr;
  }

  .industry-topbar,
  .industry-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-cta-band {
    align-items: flex-start;
  }

  .industry-highlight-grid,
  .industry-metric-grid,
  .industry-kpi-band,
  .industry-surface-grid--dense {
    grid-template-columns: 1fr 1fr;
  }

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

  .industry-dashboard-grid > :first-child {
    grid-row: auto;
  }

  .industry-artifact-collage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .industry-artifact-card {
    position: relative;
    width: auto;
    inset: auto;
  }

  .industry-transform-engine {
    min-height: 0;
    justify-items: start;
  }

  .industry-transform-engine::before,
  .industry-transform-engine::after,
  .industry-workflow-strip::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .industry-page-shell {
    padding: 18px 14px 36px;
  }

  .industry-topnav {
    display: none;
  }

  .industry-hero-copy,
  .industry-highlight-panel,
  .industry-section,
  .industry-cta-band {
    padding: 22px;
    border-radius: 24px;
  }

  .industry-hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .industry-highlight-grid,
  .industry-metric-grid,
  .industry-kpi-band,
  .industry-surface-grid--dense {
    grid-template-columns: 1fr;
  }

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

  .industry-dashboard-bubble {
    position: relative;
    width: auto;
    inset: auto;
    margin-top: 12px;
  }

  .industry-dashboard-bubbles {
    position: static;
    margin-top: 14px;
    pointer-events: auto;
  }
}
