/* ============================================================
   Florida SEO Hub — Industry Landing Page Styles
   Extends homepage.css + suburb.css (shared tokens, section-inner,
   section-header, forms, buttons, animation primitives).

   Every component below is namespaced `fsh-ind-*` and is unique to
   single-industry.php — nothing here touches suburb.css / area pages.
   ============================================================ */

/* ── 1. Hero — "The Dossier" ─────────────────────────────────── */
.fsh-ind-hero {
  overflow: hidden;
  padding: 88px clamp(24px, 5vw, 80px) 100px;
  position: relative;
}

.fsh-ind-hero__field {
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  height: 520px;
  inset: 0 0 auto 0;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
  pointer-events: none;
  position: absolute;
}

.fsh-ind-hero__glow {
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  height: 560px;
  pointer-events: none;
  position: absolute;
  right: -8%;
  top: -12%;
  width: 560px;
}

.fsh-ind-hero__inner {
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 36px;
  position: relative;
  z-index: 1;
}

.fsh-ind-hero__grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .fsh-ind-hero__grid {
    gap: clamp(32px, 5vw, 72px);
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.fsh-ind-hero__content {
  max-width: 640px;
}

.fsh-ind-hero__title {
  font-size: clamp(38px, 5.4vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 16px 0 18px;
}

.fsh-ind-hero__accent {
  color: #2dd4bf;
  display: block;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  margin: 0 0 22px;
}

.fsh-ind-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 540px;
}

.fsh-ind-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Dossier card ───────────────────────────────────────────── */
.fsh-ind-dossier {
  background: linear-gradient(165deg, rgba(20, 42, 69, 0.92) 0%, rgba(10, 22, 40, 0.97) 100%);
  margin-inline: auto;
  max-width: 420px;
  padding: 30px 32px 32px;
  position: relative;
  width: 100%;
}

.fsh-ind-dossier__head {
  align-items: center;
  border-bottom: 1px solid rgba(45, 212, 191, 0.16);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.fsh-ind-dossier__id {
  color: #5c7a94;
  font-size: 11px;
}

.fsh-ind-dossier__body {
  align-items: center;
  display: flex;
  gap: 18px;
  padding: 24px 0 18px;
}

.fsh-ind-dossier__stat-main {
  min-width: 0;
}

.fsh-ind-dossier__label {
  color: #94a3b8;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.fsh-ind-dossier__value {
  color: #2dd4bf;
  font-size: clamp(34px, 5vw, 44px);
  margin: 0;
}

.fsh-ind-dossier__note {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.fsh-ind-dossier__bar {
  background: rgba(45, 212, 191, 0.15);
  border-radius: 4px;
  height: 4px;
  margin-bottom: 26px;
  overflow: hidden;
}

.fsh-ind-dossier__bar span {
  background: linear-gradient(90deg, #2dd4bf 0%, rgba(45, 212, 191, 0.5) 100%);
  border-radius: 4px;
  display: block;
  height: 100%;
}

.fsh-ind-dossier__foot {
  border-top: 1px solid rgba(45, 212, 191, 0.16);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 22px;
}

.fsh-ind-dossier__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.fsh-ind-dossier__stat-label {
  color: #5c7a94;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fsh-ind-dossier__stat-value {
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.fsh-ind-dossier__stat .fsh-muted {
  font-size: 11.5px;
}

/* Reusable icon chip ─ used in dossier, signal cards, manifest cards */
.fsh-ind-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2) 0%, rgba(45, 212, 191, 0.06) 100%);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 14px;
  color: #2dd4bf;
  display: inline-flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.fsh-ind-icon svg {
  display: block;
}

.fsh-ind-icon--lg {
  border-radius: 16px;
  height: 56px;
  width: 56px;
}

/* ── 2. Live query feed ──────────────────────────────────────── */
.fsh-ind-feed {
  background: #0d1f38;
  border-block: 1px solid rgba(45, 212, 191, 0.14);
  overflow: hidden;
  padding: 22px clamp(24px, 5vw, 80px);
}

.fsh-ind-feed__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 0 auto;
  max-width: 1280px;
}

.fsh-ind-feed__label {
  flex-shrink: 0;
  white-space: nowrap;
}

.fsh-ind-feed__label::after {
  animation: fsh-ind-blink 1.1s step-end infinite;
  content: "_";
  margin-left: 2px;
}

@keyframes fsh-ind-blink {
  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

.fsh-ind-feed__marquee {
  border-block: 0;
  flex: 1 1 320px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  min-width: 0;
}

.fsh-ind-feed__chip {
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 8px;
  color: #cbd5e1;
  margin-right: 10px;
  padding: 8px 14px !important;
}

.fsh-ind-feed__chip::after {
  content: none;
}

/* ── 3. Industry benefits — "The Signal Grid" ────────────────── */
.fsh-ind-signals {
  background: #142a45;
  border-block: 1px solid rgba(45, 212, 191, 0.12);
  padding: 100px clamp(24px, 5vw, 80px);
}

.fsh-ind-signals__grid {
  background: rgba(45, 212, 191, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.14);
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .fsh-ind-signals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fsh-ind-signals__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fsh-ind-signals__grid > li {
  background: #101f37;
  margin: 0;
}

.fsh-ind-signal-card {
  height: 100%;
  padding: 36px 30px;
  position: relative;
  transition: background 0.3s ease;
}

.fsh-ind-signal-card:hover {
  background: rgba(45, 212, 191, 0.05);
}

.fsh-ind-signal-card::after {
  background: #2dd4bf;
  bottom: 0;
  content: "";
  height: 2px;
  left: 30px;
  position: absolute;
  right: 30px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.fsh-ind-signal-card:hover::after {
  transform: scaleX(1);
}

.fsh-ind-signal-card__idx {
  font-size: 13px;
  position: absolute;
  right: 30px;
  top: 30px;
}

.fsh-ind-signal-card .fsh-ind-icon {
  margin-bottom: 22px;
}

.fsh-ind-signal-card h3 {
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  max-width: 88%;
}

.fsh-ind-signal-card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ── 4. Why / challenge — "The Brief" ────────────────────────── */
.fsh-ind-brief {
  padding: 100px clamp(24px, 5vw, 80px);
}

.fsh-ind-brief__layout {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .fsh-ind-brief__layout {
    align-items: start;
    gap: 80px;
    grid-template-columns: 340px 1fr;
  }
}

.fsh-ind-brief__intro {
  position: relative;
}

@media (min-width: 960px) {
  .fsh-ind-brief__intro {
    position: sticky;
    top: 110px;
  }
}

.fsh-ind-brief__intro h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 12px 0 32px;
}

.fsh-ind-brief__dial {
  max-width: 180px;
  opacity: 0.92;
}

.fsh-ind-ring {
  animation: fsh-ind-ring-pulse 3.4s ease-out infinite;
  fill: none;
  transform-box: fill-box;
  transform-origin: center;
}

.fsh-ind-ring--b {
  animation-delay: 0.5s;
}

.fsh-ind-ring--c {
  animation-delay: 1s;
}

@keyframes fsh-ind-ring-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.fsh-ind-brief__list {
  border-top: 1px solid rgba(45, 212, 191, 0.14);
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsh-ind-brief__row {
  border-bottom: 1px solid rgba(45, 212, 191, 0.14);
  column-gap: 28px;
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 32px 4px;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.fsh-ind-brief__row:hover {
  background: rgba(45, 212, 191, 0.03);
  padding-left: 16px;
}

.fsh-ind-brief__row-idx {
  font-size: 15px;
  padding-top: 2px;
}

.fsh-ind-brief__row h3 {
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.fsh-ind-brief__row p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ── 5. Services — "The Manifest" ────────────────────────────── */
.fsh-ind-manifest {
  background: #0f2137;
  padding: 100px clamp(24px, 5vw, 80px) 120px;
}

.fsh-ind-manifest__grid {
  align-items: stretch;
  display: grid;
  column-gap: 16px;
  row-gap: 28px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsh-ind-manifest__grid > li {
  min-width: 0;
}

@media (min-width: 640px) {
  .fsh-ind-manifest__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fsh-ind-manifest__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }

  .fsh-ind-manifest__item--lead {
    grid-column: span 2;
  }
}

.fsh-ind-manifest-card {
  background: rgba(15, 33, 55, 0.6);
  border: 1px solid rgba(45, 212, 191, 0.14);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 26px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.fsh-ind-manifest-card:hover {
  background: rgba(45, 212, 191, 0.05);
  border-color: rgba(45, 212, 191, 0.35);
}

.fsh-ind-manifest-card--lead {
  --fsh-frame-c: rgba(45, 212, 191, 0.5);
  background: linear-gradient(150deg, rgba(45, 212, 191, 0.08) 0%, rgba(15, 33, 55, 0.7) 60%);
}

@media (min-width: 1024px) {
  .fsh-ind-manifest-card--lead {
    padding: 36px 40px;
  }
}

.fsh-ind-manifest-card__flag {
  margin-bottom: 18px;
}

.fsh-ind-manifest-card__idx {
  display: block;
  font-size: 13px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.fsh-ind-manifest-card .fsh-ind-icon {
  margin-bottom: 16px;
}

.fsh-ind-manifest-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
}

.fsh-ind-manifest-card--lead h3 {
  font-size: 22px;
}

.fsh-ind-manifest-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.fsh-ind-manifest-card--lead p {
  font-size: 15px;
  max-width: 460px;
}

/* ── 6. Results highlight — "The Ticket" ─────────────────────── */
.fsh-ind-results {
  padding: 80px clamp(24px, 5vw, 80px);
}

.fsh-ind-ticket {
  background: #0f2137;
  border: 1px solid rgba(45, 212, 191, 0.22);
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
}

@media (min-width: 640px) {
  .fsh-ind-ticket {
    /* Three grid children: stub, perforation divider, body — the divider
       column is sized to its own intrinsic (2px) width via `auto`. */
    grid-template-columns: 1fr auto 1.4fr;
  }
}

.fsh-ind-ticket__stub {
  background: radial-gradient(ellipse 100% 100% at 0% 0%, rgba(45, 212, 191, 0.12), transparent 70%);
  border-bottom: 1px dashed rgba(45, 212, 191, 0.28);
  padding: 40px 36px;
  position: relative;
}

@media (min-width: 640px) {
  .fsh-ind-ticket__stub {
    border-bottom: none;
  }
}

.fsh-ind-ticket__tag {
  color: #5c7a94;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.fsh-ind-ticket__value {
  color: #2dd4bf;
  font-size: clamp(44px, 6vw, 60px);
  line-height: 1;
  margin: 0 0 14px;
}

.fsh-ind-ticket__route {
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
}

.fsh-ind-ticket__perf {
  background: repeating-linear-gradient(to bottom, rgba(45, 212, 191, 0.4) 0 8px, transparent 8px 16px);
  position: relative;
  width: 2px;
}

.fsh-ind-ticket__perf::before,
.fsh-ind-ticket__perf::after {
  background: #0f2137;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 50%;
  content: "";
  height: 24px;
  left: -12px;
  position: absolute;
  width: 24px;
}

.fsh-ind-ticket__perf::before {
  top: -12px;
}

.fsh-ind-ticket__perf::after {
  bottom: -12px;
}

@media (max-width: 639px) {
  .fsh-ind-ticket__perf {
    display: none;
  }
}

.fsh-ind-ticket__body {
  align-items: center;
  display: flex;
  padding: 32px 36px 40px;
}

@media (min-width: 640px) {
  .fsh-ind-ticket__body {
    padding: 40px 36px;
  }
}

.fsh-ind-ticket__label {
  color: #f8fafc;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
}

.fsh-ind-ticket__note {
  font-size: 13.5px;
  margin: 0;
}

/* ── 7. Market intelligence — "The Field Report" ─────────────── */
.fsh-ind-report {
  background: #142a45;
  border-block: 1px solid rgba(45, 212, 191, 0.12);
  padding: 100px clamp(24px, 5vw, 80px);
}

.fsh-ind-report__layout {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .fsh-ind-report__layout {
    align-items: start;
    gap: 72px;
    grid-template-columns: 1fr 300px;
  }
}

.fsh-ind-report__entries {
  display: grid;
  gap: 36px;
}

.fsh-ind-report__entry {
  border-left: 2px solid rgba(45, 212, 191, 0.25);
  padding-left: 24px;
}

.fsh-ind-report__exhibit {
  color: #2dd4bf;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.fsh-ind-report__entry h3 {
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
}

.fsh-ind-report__entry p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.fsh-ind-report__gauges {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fsh-ind-gauge {
  background: #0f2137;
  border: 1px solid rgba(45, 212, 191, 0.18);
  padding: 26px 22px;
  text-align: center;
}

.fsh-ind-gauge__svg {
  display: block;
  height: auto;
  margin: 0 auto 16px;
  max-width: 150px;
  width: 100%;
}

.fsh-ind-gauge__label {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* ── 8. FAQ — "The Q&A Ledger" ────────────────────────────────── */
.fsh-ind-qa {
  padding: 100px clamp(24px, 5vw, 80px);
}

.fsh-ind-qa__list {
  border-top: 1px solid rgba(45, 212, 191, 0.16);
}

.fsh-ind-qa__item {
  border-bottom: 1px solid rgba(45, 212, 191, 0.16);
  padding: 4px 0;
}

.fsh-ind-qa__q {
  align-items: center;
  column-gap: 20px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  list-style: none;
  padding: 24px 4px;
}

.fsh-ind-qa__q::-webkit-details-marker {
  display: none;
}

.fsh-ind-qa__num {
  color: rgba(45, 212, 191, 0.7);
  font-size: 13px;
}

.fsh-ind-qa__q-text {
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.fsh-ind-qa__toggle {
  height: 16px;
  position: relative;
  width: 16px;
}

.fsh-ind-qa__toggle::before,
.fsh-ind-qa__toggle::after {
  background: #2dd4bf;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 7px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  width: 16px;
}

.fsh-ind-qa__toggle::after {
  transform: rotate(90deg);
}

.fsh-ind-qa__item[open] .fsh-ind-qa__toggle::before {
  transform: rotate(180deg);
}

.fsh-ind-qa__item[open] .fsh-ind-qa__toggle::after {
  opacity: 0;
  transform: rotate(0deg);
}

.fsh-ind-qa__item:hover .fsh-ind-qa__q-text,
.fsh-ind-qa__item[open] .fsh-ind-qa__q-text {
  color: #2dd4bf;
}

.fsh-ind-qa__a {
  padding: 0 4px 26px 64px;
}

.fsh-ind-qa__a p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
}

/* ── 9. Conversion — "The Command Console" ───────────────────── */
.fsh-ind-console {
  background: #0d1f38;
  overflow: hidden;
  padding: 100px clamp(24px, 5vw, 80px);
  position: relative;
}

.fsh-ind-console__glow {
  background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(255, 107, 74, 0.09) 0%, transparent 70%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fsh-ind-console__inner {
  align-items: flex-start;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .fsh-ind-console__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.fsh-ind-console__sub {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 460px;
}

.fsh-ind-console__channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}

.fsh-ind-channel {
  align-items: baseline;
  border-bottom: 1px solid rgba(45, 212, 191, 0.14);
  color: #94a3b8;
  display: flex;
  gap: 16px;
  padding: 12px 0;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fsh-ind-channel:hover {
  border-color: rgba(45, 212, 191, 0.5);
  color: #f8fafc;
}

.fsh-ind-channel__label {
  color: #5c7a94;
  flex-shrink: 0;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 52px;
}

.fsh-ind-channel__value {
  font-size: 16px;
  font-weight: 600;
}

.fsh-ind-console__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.fsh-ind-console__panel {
  --fsh-frame-c: rgba(45, 212, 191, 0.4);
  background: linear-gradient(165deg, rgba(20, 42, 69, 0.9) 0%, rgba(10, 22, 40, 0.97) 100%);
  padding: 40px 36px;
}

.fsh-ind-console__panel h3 {
  font-size: 22px;
  margin: 8px 0;
}

.fsh-ind-console__panel-note {
  font-size: 14px;
  margin-bottom: 24px;
}

.fsh-ind-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fsh-ind-form__submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 6px;
  width: 100%;
}

/* ── 10. Internal links — "Related Coordinates" ──────────────── */
.fsh-ind-coords {
  background: #0a1628;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  padding: 80px clamp(24px, 5vw, 80px);
}

.fsh-ind-coords__title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 14px 0 48px;
}

.fsh-ind-coords__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  max-width: 1280px;
}

@media (min-width: 768px) {
  .fsh-ind-coords__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fsh-ind-coords__group h3 {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.fsh-ind-coords__group ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsh-ind-coords__link {
  align-items: center;
  border-bottom: 1px solid rgba(45, 212, 191, 0.08);
  color: #94a3b8;
  display: flex;
  gap: 14px;
  padding: 12px 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
}

.fsh-ind-coords__link:hover {
  background: rgba(45, 212, 191, 0.04);
  color: #f8fafc;
  padding-left: 10px;
}

.fsh-ind-coords__link-idx {
  color: rgba(45, 212, 191, 0.55);
  flex-shrink: 0;
  font-size: 11px;
}

.fsh-ind-coords__link-text {
  flex: 1;
  font-size: 14px;
  min-width: 0;
}

.fsh-ind-coords__arrow {
  color: #2dd4bf;
  flex-shrink: 0;
  height: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 14px;
}

.fsh-ind-coords__link:hover .fsh-ind-coords__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fsh-ind-feed__label::after {
    animation: none;
    opacity: 1;
  }

  .fsh-ind-ring {
    animation: none;
    opacity: 0.3;
  }

  .fsh-ind-signal-card::after {
    transition: none;
  }
}

/* ── Responsive refinements ──────────────────────────────────── */
@media (max-width: 767px) {
  .fsh-ind-hero {
    padding: 56px clamp(24px, 5vw, 80px) 64px;
  }

  .fsh-ind-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fsh-ind-hero__actions .fsh-btn {
    width: 100%;
  }

  .fsh-ind-dossier {
    padding: 26px 24px 28px;
  }

  .fsh-ind-signals,
  .fsh-ind-brief,
  .fsh-ind-manifest,
  .fsh-ind-report,
  .fsh-ind-qa,
  .fsh-ind-console {
    padding-block: 64px;
  }

  .fsh-ind-signal-card {
    padding: 30px 24px;
  }

  .fsh-ind-qa__a {
    padding-left: 4px;
  }

  .fsh-ind-console__ctas {
    align-items: stretch;
    flex-direction: column;
  }

  .fsh-ind-console__ctas .fsh-btn {
    width: 100%;
  }

  .fsh-ind-console__panel {
    padding: 28px 24px;
  }

  .fsh-ind-coords {
    padding-block: 56px;
  }

  .fsh-ind-coords__grid {
    gap: 36px;
  }
}
